# 安装 NodeJS NPM
$ sudo apt-get install node npm -g
# 更新 NodeJS (Linux, OSX)
$ npm install -g n
$ n 6.2.2
# 更新 NPM
$ npm install -g npm
# 更新 NodeJS 6.2.2 或以上稳定版本
$ npm install -g n nrm
$ n use stable
# 使用淘宝源 或 cnpm 源
$ nrm use taobao
# 安装 node_modules
$ cd /path/to/project
$ npm install
$ 先针对安装gulp-sass、node-sass
$ 然后运行npm rebuild node-sass
# 生成 nginx 配置文件
$ ./bin/nginx
# 或者
$ npm run nginx
# 导入配置文件
$ echo "include /path/to/project/vhosts/nginx.conf;" >> /path/to/nginx/nginx.conf
# 重启nginx
# Linux
$ sudo service nginx restart
# OSX
$ sudo brew services restart nginx
# 发布代码
#请输入项目名(项目文件夹名):gulp task --name proname
$ gulp --name proname