侧边栏壁纸
  • 累计撰写 23 篇文章
  • 累计创建 8 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

使用nvm管理nodejs版本

付心武士
2024-06-16 / 0 评论 / 0 点赞 / 3 阅读 / 991 字

安装nvm

nvm github地址: https://github.com/nvm-sh/nvm

windows版地址: https://github.com/coreybutler/nvm-windows

使用nvm

#查看可供安装的版本
nvm list available

#查看安装了那些版本
nvm ls

#安装特定版本
nvm install 14.7.0 # or 16.3.0, 12.22.1, etc

#使用特定版本
nvm use 14.7.0 # or 16.3.0, 12.22.1, etc

#获取安装路径
nvm which 14.7.0 # or 16.3.0, 12.22.1, etc

0

评论区