# nvm-cn **Repository Path**: oneToC/nvm-cn ## Basic Information - **Project Name**: nvm-cn - **Description**: 🧊 nvm国内安装工具 - **Primary Language**: Shell - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 94 - **Created**: 2022-06-10 - **Last Updated**: 2022-06-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 安装 ` bash -c "$(curl -fsSL https://gitee.com/RubyKids/nvm-cn/raw/master/install.sh)" ` ## 卸载 ` bash -c "$(curl -fsSL https://gitee.com/RubyKids/nvm-cn/raw/master/uninstall.sh)" ` ## 使用 ```bash nvm ls # 列出所有可安装版本 nvm ls-remote # 安装某个版本Node nvm install lts/fermium nvm install v12.20.1 nvm install v15.5.1 # 切换Node版本 nvm use system nvm use 14.15 # 不用全部打出版本号 # 更新nvm nvm-update ``` ## npm 换源 ```bash # 查看配置 npm config ls npm config set registry https://registry.npm.taobao.org ```