Node.js安装教程

参考

Linux安装Node.js

  1. 安装Git
  2. 获取NVM源码
    1
    git clone https://gitee.com/mirrors/nvm.git ~/.nvm && cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`
  3. 配置NVM环境变量
    1
    2
    sudo sh -c 'echo ". ~/.nvm/nvm.sh" >> /etc/profile'
    source /etc/profile
  4. 配置npm镜像源为阿里云镜像
    1
    npm config set registry http://registry.npmmirror.com

NVM使用

  • 查看Node.js版本 nvm list-remote
  • 安装node.js nvm install v22.12.0
  • 查看已安装 nodejs 版本 nvm ls

指定 NPM 镜像仓库

  • 命令全局设置 NPM 镜像npm config set registry <镜像地址>
  • 查看当前仓库 npm config get registry

镜像列表