Linux安装NVM(简洁版)

  1. 安装目录
    mkdir /opt/nvm && cd /opt/nvm
  2. 安装包下载
    wget https://github.com/nvm-sh/nvm/archive/refs/tags/v0.39.5.tar.gz
    注意:https://github.com/nvm-sh/nvm/tags获取下载链接并替换
  3. 安装包解压
    for file in *.tar.gz; do tar -zxvf "$file" --strip-components=1; done
  4. 安装包安装
    /opt/nvm/install.sh && source ~/.bashrc
  5. 常用命令
    1.安装特定版本的NodeJS
    nvm install 
    
    2.切换特定版本的NodeJS
    nvm use 
    
    3.安装LTS版本NodeJS
    nvm install --lts
    
    4.切换LTS版本NodeJS
    nvm use --lts
    
    5.查看已安装NodeJS版本
    nvm ls
    
    6.查看已安装的LTS版本
    nvm ls --lts
    
    7.卸载特定版本的NodeJS
    nvm uninstall 
    
    8.设置默认的NodeJS
    nvm alias default 
    
    9.更新NVM
    nvm upgrade
  6. 淘宝镜像
    1.安装cnpm、yarn
    cnpm安装:npm install -g cnpm --registry=https://registry.npm.taobao.org
    yarn安装:npm install -g yarn --registry=https://registry.npm.taobao.org
     
    2.设置淘宝镜像
    npm config set registry https://registry.npm.taobao.org --global
    npm config set disturl https://npm.taobao.org/dist --global
    yarn config set registry https://registry.npm.taobao.org --global
    yarn config set disturl https://npm.taobao.org/dist --global

你可能感兴趣的:(nvm,npm,cnpm,yarn,nodejs)