一、安装NVM
输入后会自动安装
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.4/install.sh| bash
添加nvm到环境变量
source /home/vagrant/.bashrc
二 、安装node.j 7
nvm install 7 //国外镜像下载,超级慢,不推荐,用下面的命令
NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/nodenvminstall 7 //飞一搬的感觉
三 、npm配置淘宝镜像,加速,加速
npm config set registryhttps://registry.npm.taobao.org
四、开始玩耍
su root
cd /vagrant
mkdir testnode
cd testnode
npm init
npm installmocha --save-dev
简写
npm imocha --save-dev
五、若报错npm installmocha --save-dev
加--no-bin-links
npm imocha --save-dev --no-bin-links
网友评论