当前位置:网站首页>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
边栏推荐
猜你喜欢
随机推荐
OpenCV如何实现Sobel边缘检测
BGP实验(含MPLS)
电子制造企业部署WMS仓储管理系统的好处是什么
螺旋矩阵_数组 | leecode刷题笔记
nodejs 安装多版本 版本切换
Mvc、Mvp和Mvvm
typescript50 - type specification between cross types and interfaces
nodejs切换版本使用(不需要卸载重装)
数据库扩容也可以如此丝滑,MySQL千亿级数据生产环境扩容实战
ThreadLocal
typescript58-泛型类
typescript54 - generic constraints
手撕Nacos源码,今日撕服务端源码
LDO investigation
如何通过API接口从淘宝(或天猫店)复制宝贝到拼多多接口代码对接教程
【store商城项目01】环境准备以及测试
LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之三:两次优化
《Greenplum构建实时数据仓库实践》简介
R3LIVE论文学习(二):VIO子系统
typescript54-泛型约束









