查看版本
1 2 | node -v npm -v |
npm更新
1 2 | 更新到最新版本:npm install -g npm 更新到指定版本:npm install -g [email protected] |
node更新
linux
- 清除node.js的cache(不确定有没有必要)
1 | npm cache clean -f |
- 安装工具n ,这个工具是专门用来管理node.js版本的
- 安装命令
1 | npm install -g n |
- 出现这样错误信息,在命令后面加上 –force 重新运行
1 2 | npm ERR! notsup Unsupported platform for [email protected]: wanted {“os”:”!win32”,”arch”:”any”} (current: {“os”:”win32”,”arch”:”x64”}) |
1 | npm install -g n -f |
- 安装最新版本的node.js
1 2 3 | 安装稳定版本:n stable 安装最新版本:n latest 安装指定版本:n 8.9.4 |
- 再次查看node.js版本
1 | node -v |
- 查看node的安装路径
1 | which node |
windows
https://nodejs.org/zh-cn/download/
前往官网下载覆盖安装
npm换源
- 使用阿里定制的cnpm命令行工具代替默认的npm,
- 输入以下代码
1 | $ npm install -g cnpm --registry=https://registry.npm.taobao.org |
- 检测是否安装成功
1 | $ cnpm -v |
- 使用npm淘宝源
- 单次使用npm
1 | $ npm install --registry=https://registry.npm.taobao.org |
- 永久使用
1 | $ npm config set registry https://registry.npm.taobao.org |
- 使用下面命令,可以看到,已经换源了。
1 | npm config list |
- 还原npm仓库地址
1 | npm config set registry https://registry.npmjs.org/ |