赞
踩
可以看到当前的版本 LTS是大多用户使用的稳定版本, Current是最新版本, 这里选择的是稳定版本(18.15.0)
点击如下图所示位置Downloads 进行node.js下载
点击最新版本,点击Windows安装包 进行下载安装, 如下
如果勾选了就会出现了这样的界面下载完成之后会出现
-
- node -v
-
- npm -v
查看npm全局模块的存放路径
-
- npm get prefix
查看npm缓存默认存放路径
-
- npm get cache
如上图所示,npm 全局模块存放位置以及cache的存放位置,默认是在 C 盘 “C:\Users\用户\AppData” 下。
设置全局模块的安装路径到 “node_global” 文件夹 npm config set prefix 命令
-
- npm config set prefix "D:\NodeJs\nodejs\node_global"
设置缓存到 “node_cache” 文件夹 npm config set cache 命令
注意看路径不要写错了喔!!!
-
- npm config set cache "D:\NodeJs\nodejs\node_cache"
在系统变量的环境变量中配置node_global 的路径,方便执行命令
使用命令
-
- npm install express -g
如上图所示,下载express模块成功,然后在文件管理器中查看是否保存到上面自定义的路径下。
到这里就已经修改成功了
-
- npm config get registry
-
- npm config set registry https://registry.npmmirror.com/
-
- npm config set registry https://registry.npm.taobao.org/ //即将停止解析
-
- npm config get registry
如上图所示,npm默认的registry已修改为淘宝镜像
已更改至最新
-
- npm install -g cnpm --registry=https://registry.npmmirror.com
-
- cnpm -v
到这里就已经安装完毕.
如果遇到安装完cnpm时出现不是内部或外部命令,也不是可运行的程序。需要重新打开cmd才能正常安装。
如果需要卸载看另一篇博客:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。