nodejs安装后

设置镜像

1
2
npm install -g cnpm --registry=https://registry.npmmirror.com
npm config set registry https://registry.npmmirror.com

使用命令

1
2
cnpm install [name]
cnpm sync cnpmcore

更改存储路径

1
2
3
npm config set cache "D:\3rd\nodejs\node_cache"  
npm config set prefix "D:\3rd\nodejs"
npm config ls

环境变量

1
NODE_PATH=d:\3rd\nodejs\node_modules

参考资料
https://npmmirror.com/
https://www.cnblogs.com/merray/p/7754215.html