# nvm installer cn **Repository Path**: pinke/nvm-installer-cn ## Basic Information - **Project Name**: nvm installer cn - **Description**: NVM 国内安装脚本,调整为了ghp.ci 加速 访问 github 当前版本0.40 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-29 - **Last Updated**: 2024-10-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # NVM && node 20 安装脚本 ``` # 安装 nvm (Node 版本管理器) curl -o- https://gitee.com/pinke/nvm-installer-cn/raw/master/install.sh | bash # 下载并安装 Node.js(可能需要重启终端) nvm install 20 # 验证环境中是否存在正确的 Node.js 版本 node -v # 应该打印 `v20.18.0` # 验证环境中是否存在正确的 npm 版本 npm -v # 应该打印 `10.8.2` ```