当前位置:网站首页>nodejs install multi-version version switching
nodejs install multi-version version switching
2022-08-04 01:02:00 【m0_67392661】
Sometimes you need to run different projects. Inconsistent node versions will cause many problems, especially some plugins corresponding to the latest version are not necessarily compatible with lower versions due to syntax and other reasons.pit.Uninstalling node repeatedly is cumbersome.
Thankfully nvm lets you manage multiple versions of nodejs on your computer.The full name of nvm is node.js version management. As the name suggests, it is a version management tool for nodejs.Through it, you can install and switch between different versions of nodejs.
1. Download
Releases coreybutler/nvm-windows GitHubPull it to the bottom, it is recommended to download nvm-setup.zip.
- nvm-noinstall.zip: Green free installation version, but needs to be configured when using.
- nvm-setup.zip: The installation version, it is recommended to use this.
2. Installation
Some information on the Internet says that you need to uninstall the installed nodejs first. In fact, you don't need to choose the installed version. During the installation process, the installed version will be detected, and you will be prompted whether to manage it. You can choose yes.
Installation is the next step, no screenshots. During the installation process, you need to select the nvm installation directory and the nodejs installation directory. You don't need to change it and keep the default.
3. Installation confirmation
Open cmd, enter the command nvm, and the version number and command parameters are displayed, indicating that the installation is successful.
4. Settings before use
It's best to set up the mirror before use!
It's best to set up the mirror before use!
It's best to set up the mirror before use!
Otherwise npm may be missing when installing nodejs.
Find the installation directory of nvm just now, there is a settings.txt, add the following 2 lines in it, this is to set the Taobao mirror.
node_mirror: https://npm.taobao.org/mirrors/node/
npm_mirror: https://npm.taobao.org/mirrors/npm/
5. Use
In cmd, enter the command nvm list to view the node version on the current computer
According to enthusiastic netizens, if there is a problem with the operation in cmd (it will prompt for permissions, etc.), you can run it as an administrator.
Command reference:
nvm off // disable node.js version management (do not uninstall anything)nvm on // Enable node.js version managementnvm install // install node.js named version is the version number For example: nvm install 8.12.0nvm uninstall // The command to uninstall node.js is to uninstall the specified version of nodejs. When the installation fails, uninstall and usenvm ls // show all installed node.js versionsnvm list available // Displays all versions of node.js that can be installednvm use // switch to using the specified nodejs versionnvm v // show nvm versionnvm install stable // install the latest stable version 6. Install different versions of nodejs
In cmd, enter the command nvm install 16.8.0, 16.8.0 is the version number, fill in the corresponding version number for the version you want to install, and then wait for it to install automatically, saving you worry and effort.
D:hbuilder-workspace>nvm install 16.8.0Downloading node.js version 16.8.0 (64-bit)...CompleteCreating D:Program Files (x86)vm empDownloading npm version 7.21.0... CompleteInstalling npm v7.21.0...Installation complete. If you want to use this version, typenvm use 16.8.0This is installed, enter the command nvm use 16.8.0 to switch the node version.
7. Uninstall
Run the command nvm uninstall 16.8.0 in cmd, so you can uninstall version 16.8.0
8. There may be problems
The node installation was successful when vnm install was executed, but npm failed when the version was switched. This is because the default image did not download and install npm. After step 4, uninstall the corresponding version and install it again.
There is a directory corresponding to the version of node in the nvm installation directory, you can open it to see if there is npm in it.
Let me introduce myself first. The editor graduated from Shanghai Jiaotong University in 2013. I worked in a small company and went to big factories such as Huawei and OPPO. I joined Alibaba in 2018, until now.I know that most junior and intermediate java engineers want to upgrade their skills, they often need to explore their own growth or sign up to study, but for training institutions, the tuition fee is nearly 10,000 yuan, which is really stressful.Self-learning that is not systematic is very inefficient and lengthy, and it is easy to hit the ceiling and the technology stops.Therefore, I collected a "full set of learning materials for java development" for everyone. The original intention is very simple. I hope to help friends who want to learn by themselves but don't know where to start, and at the same time reduce everyone's burden.Add the business card below to get a full set of learning materials
边栏推荐
- What warehouse management problems can WMS warehouse management system solve in the electronics industry?
- 扩展卡尔曼滤波EKF
- 【store商城项目01】环境准备以及测试
- 【无标题】
- typescript50-交叉类型和接口之间的类型说明
- Mvc、Mvp和Mvvm
- 【超详细教程】LVS+KeepAlived高可用部署实战应用
- LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之三:两次优化
- Mvc, Mvp and Mvvm
- ASP.NET 获取数据库的数据并写入到excel表格中
猜你喜欢
随机推荐
c语言分层理解(c语言操作符)
中原银行实时风控体系建设实践
MySQL回表指的是什么
outputBufferIndex = mDecode.dequeueOutputBuffer(bufferInfo, 0) 一直返回为-1
TypeScript学习
Apache DolphinScheduler新一代分布式工作流任务调度平台实战-中
LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之三:两次优化
手撕Nacos源码,今日撕服务端源码
研究生新生培训第四周:MobileNetV1, V2, V3
Mvc, Mvp and Mvvm
2022 中国算力大会发布“创新先锋”优秀成果
电子制造企业部署WMS仓储管理系统的好处是什么
互斥锁、读写锁、自旋锁,以及原子操作指令xaddl、cmpxchg的使用场景剖析
七夕佳节即将来到,VR全景云游为你神助攻
面试必问的HashCode技术内幕
【日志框架】
【超详细】手把手教你搭建MongoDB集群搭建
Google Earth Engine ——利用公开的河流数据计算河流的有效宽度
C 学生管理系统 显示链表信息、删除链表
Tanabata festival coming, VR panoramic look god assists for you









