npm(macOS)安装步骤
原文:https://my.oschina.net/piscdong/blog/3113475
本文截取了原文中npm和cnpm的安装部分
安装npm
[代码]$ brew install node
[代码]
npm直接使用淘宝镜像
[代码]$ npm install nrm -g
$ nrm use taobao
[代码]
或者使用cnpm(不推荐)
[代码]$ npm install -g cnpm --registry=https://registry.npm.taobao.org
$ npm config set registry https://registry.npm.taobao.org
[代码]
完成
补充:安装Homebrew
[代码]/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
[代码]
或者(国内可用)
[代码]/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
[代码]