我这边用的是虚拟机搭建的服务器,系统是centos7
1、新搭建的服务器,进去首先要下载一些包(yum)
sudo yum install vim openssl build-essential libssl-dev wget curl git
2、使用nvm管理node版本
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
3、下载完成后加入系统环境
source ~/.bashrc
4、安装需要的node版本
nvm install v6.9.5
5、指定版本
nvm use v6.9.5
6、默认版本
nvm alias default v6.9.5
7、查看版本
node -v
8、下载淘宝镜像
npm --registry=https://registry.npm.taobao.org install -g npm
npm --registry=https://registry.npm.taobao.org install -g cnpm
9、系统文件监控数目
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
10、如果npm下载太慢可以使用
cnpm sync 插件名字