1、安装 homebrew 先
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
会提示你点击回车继续,比较耗时,用了大概15分钟。
2、安装nodeJS
brew install nodejs
3、添加访问权限,这样以后执行npm就不需要使用sudo了
sudo chmod -R 777 /usr/local/lib/node_modules/
4、使用淘宝镜像,这样以后执行npm install就会快多了
npm install -g cnpm --registry=https://registry.npm.taobao.org
5、 验证node及npm版本
node -v
npm -v
网友评论