加载中
web架构师工具

网站检测工具 https://web.dev 网站/App监控工具 https://firebase.google.com/ 各种有趣的源码App https://glitch.com/ 前端测试框架 https://jestjs.io/ 在线绘制原型图 https://www.invi...

nginx反向代理-多端口映射

代码解释 1.1 http:www.baidu.test.com默认是80,访问“/”利用反向代理,然后访问本地8083; 1.2 8083代表本地的前端工程访问地址,前端需要访问后台数据,”/”,继续代理到后台地址9803; ...

2018/07/20 11:03
3.1K
npm更新和nodejs更新

npm更新和nodejs更新 更新你已经安装的NPM库,这个很简单,只需要运行。 npm update -g 更新Nodejs自身。一直依赖我都是下载最新版的源码,然后make install,及其繁琐。其实只需要运行以下2...

2018/06/19 15:01
198
Docker为镜像添加SSH服务

本教程基于commit命令创建 1 准备工作 使用ubuntu:14.04镜像创建一个容器 docker run -it ubuntu:14.04 /bin/bash 2 安装和配置SSH服务 在容器中更新apt缓存,安装openssh-server apt-get up...

2018/06/12 16:04
121
Docker在本地搭建私有仓库

上一课 使用registry镜像创建私有仓库 在云服务器上尝试搭建私有仓库 访问地址为http://47.98.218.29:5000/ docker run -d -p 5000:5000 registry...

2018/06/12 15:08
63
Ubuntu 服务器各种配置安装指南

How To Install Ruby on Rails with RVM on Ubuntu 16.04 How to Install MongoDB on Ubuntu 16.04 How To Install and Configure Redis on Ubuntu 16.04...

2018/05/29 04:43
87
mac下安装多版本PHP及切换

https://blog.csdn.net/a_new_steven/article/details/78652585

2018/04/28 16:43
81
ubuntu上安装并使用nvm管理node版本

nvm github地址https://github.com/creationix/nvm 安装必要包 sudo apt-get update sudo apt-get install build-essential libssl-dev 通过curl安装 curl -o- https://raw.githubuserconte...

2018/03/20 17:05
125
git命令笔记

git init 初始化 git init demo 初始化到一个叫demo的自定义文件夹 git clone https://github.com/biaoyansu/15.x.git 克隆项目 git clone https://github.com/biaoyansu/15.x.git demo 克隆...

Git
2018/02/24 15:44
96
laravel Resource Controller

Actions Handled By Resource Controller Verb Path Action Route Name GET /photo index photo.index GET /photo/create create photo.create POST /photo store photo.store GET /photo/{p...

2017/03/14 02:58
36
在mac下如何配置环境变量

打开终端使用vi ~/.bash_profile打开并编辑该文件 退出vi,使用source ~/.bash_profile 即可完成对环境变量的配置了

2016/11/23 16:26
13

没有更多内容

加载失败,请刷新页面

返回顶部
顶部