使用 nvm 管理 node 版本

使用 nvm 管理 node 版本

前言

简化前端开发, 快速安装和使用不同版本的node

Linux 下安装

安装 lts

1
2
3
4
5
6
sudo apt-get install curl
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" \
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
nvm ls
nvm install --lts

基础管理命令

  1. 查看 node 路径: which node
  2. 查看 npm 路径: which npm
  3. 切换特定版本: nvm use <version>
  4. 查看本地列表: nvm ls
  5. 查看远程列表: nvm ls-remote --lts
  6. 安装特定版本 nvm install <version>

额外

加速 npm

使用淘宝镜像

1
2
3
npm config set registry https://registry.npmmirror.com
npm config get registry
npm info express

使用 cnpm

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