安装淘宝NPM镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
配置
配置全局安装路径(C盘设置大一些,就不需要修改了)
npm config list
npm config set prefix "D:
esource
odejs
pm"
配置别名
如果使用的是Git Bash
,则
touch ~/.bashrc
echo 'alias ll="ls -rlh --time-style=+%Y-%m-%d_%H:%M:%S --sort=time"' >> ~/.bashrc
echo 'alias npm="cnpm"' >> ~/.bashrc
source ~/.bashrc