nodejs全局(npm、cnpm、yarn)及缓存基本配置,一篇就搞定
安装nodejs
npm
cnpm
yarn
异常处理
安装nodejs
官方下载地址
建议挑一个常用盘,命名nodejs,我配置的路径为D:\nodejs,以下路径自己记得修改到自己配置的位置
npm
安装好nodejs之后就拥有npm了,但是它下载资源太慢了,因此我们需要配置cnpm和yarn,先查看自己npm环境是否正确,打开cmd运行 npm -v
C:\Users\admin>npm -v 6.14.6
然后配置全局包和缓存的位置,我全部配置我在D盘创建的nodejs中(自己记得修改成自己想要的位置),方便管理,先后cmd执行下面两句
npm config set prefix "D:\nodejs\node_global" npm config set cache "D:\nodejs\node_cache"
cnpm
配置好,就开始全局安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
安装好之后运行cnpm -v查看是否能识别到cnpm
C:\Users\admin>cnpm -v cnpm@6.1.1 (D:\nodejs\node_global\node_modules\cnpm\lib\parse_argv.js) npm@6.14.8 (D:\nodejs\node_global\node_modules\cnpm\node_modules\npm\lib\npm.js) node@12.18.4 (D:\nodejs\node.exe) npminstall@3.28.0 (D:\nodejs\node_global\node_modules\cnpm\node_modules\npminstall\lib\index.js) prefix=D:\nodejs\node_global win32 x64 10.0.19041 registry=https://r.npm.taobao.org
yarn
yarn我们就可以用按好的cnpm下载了,同样是要全局安装
cnpm install yarn -g
设置淘宝源
yarn config set registry https://registry.npm.taobao.org
修改用yarn安装的全局包的位置和缓存位置,先后运行(记得修改位置为自己的配置位置)
yarn config set global-folder "D:\nodejs\yarn\global" yarn config set cache-folder "D:\nodejs\yarn\cache"
异常处理
运行过程中如果提示某个命令无法识别不是内部或外部命令,也不是可运行的程序或批处理文件,就是环境没配
好,去电脑的系统Path变量中加入该命令对应的安装位置即可。