当前位置:网站首页>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
边栏推荐
猜你喜欢

研究生新生培训第四周:MobileNetV1, V2, V3

Web3 安全风险令人生畏?应该如何应对?

typescript51-泛型的基本使用

C语言 函数递归

typescript58 - generic classes

网络带宽监控,带宽监控工具哪个好

谁说程序员不懂浪漫,表白代码来啦~

Vant3 - click on the corresponding name name to jump to the next page corresponding to the location of the name of the TAB bar

第1章:初识数据库与MySQL----MySQL安装

教你如何定位不合理的SQL?并优化之
随机推荐
.NET Static Code Weaving - Rougamo Release 1.1.0
typescript54-泛型约束
手撕Nacos源码,今日撕服务端源码
取模运算(MOD)
跨域问题解决方式 代理服务器
nodejs安装及环境配置
Vant3 - click on the corresponding name name to jump to the next page corresponding to the location of the name of the TAB bar
dynamic memory two
求解同余方程 数论 扩展欧几里得
越来越火的图数据库到底能做什么?
Spinnaker调用Jenkins API 返回403错误
LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之三:两次优化
js函数防抖和函数节流及其使用场景
.NET静态代码织入——肉夹馍(Rougamo) 发布1.1.0
快速入门EasyX图形编程
电子组装行业对MES管理系统的需求分析
虚拟机CentOS7中无图形界面安装Oracle
有没有jdbc 链接优炫数据库文档及示例?
C 学生管理系统 显示链表信息、删除链表
贴纸拼词 —— 记忆化搜索 / 状压DP