Detailed installation process of nodejs management tool nvm

Detailed installation process of nodejs management tool nvm

nvm

nvm is responsible for managing multiple versions of nodejs

Install:

https://github.com/coreybutler/nvm-windows/releases
Download nvm-setup.zip, nvm-noinstall.zip

insert image description here

Click nvm-setup.exe to install, and then click Next. Install to C:\dev\nvm. After the installation is complete, the environment variables NVM_HOME and NVM_SYMLINK are automatically configured and added to Path.

insert image description here

insert image description here

Verify whether the installation is successful and open the command line cmd

insert image description here

Commonly used commands of nvm

nvm list View all currently installed Node.js versions
nvm install version number installs the specified version of Node.js
nvm uninstall version number uninstalls the specified version of Node.js
nvm use version number selects the specified version of Node.js

Command Case Operation

# Install version 7.10.0 C:\Users\vagrant>nvm install 7.10.0
Downloading node.js version 7.10.0 (64-bit)...
Complete
Creating C:\dev\nvm\temp
Downloading npm version 4.2.0... Complete
Installing npm v4.2.0...
Installation complete. If you want to use this version, type
nvm use 7.10.0
# Install version 6.10.3 C:\Users\vagrant>nvm install 6.10.3
Downloading node.js version 6.10.3 (64-bit)...
Complete
Creating C:\dev\nvm\temp
Downloading npm version 3.10.10... Complete
Installing npm v3.10.10...
Installation complete. If you want to use this version, type
nvm use 6.10.3
# Display the currently installed version C:\Users\vagrant>nvm list
    7.10.0
    6.10.3
C:\Users\vagrant>
# Switch to version 7.10.0 C:\Users\vagrant>nvm use 7.10.0
Now using node v7.10.0 (64-bit)
C:\Users\vagrant>nvm list
  * 7.10.0 (Currently using 64-bit executable)
6.10.3
# View the nodejs version currently used C:\Users\vagrant>node -v
v7.10.0
# Switch version C:\Users\vagrant>nvm use 6.10.3
Now using node v6.10.3 (64-bit)
C:\Users\vagrant>nvm list
    7.10.0
  * 6.10.3 (Currently using 64-bit executable)

Switching versions is essentially switching shortcuts

insert image description here

The above is the detailed content of the detailed installation process of the nodejs management tool nvm. For more information about nodejs nvm installation, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • NVM installation method of nodejs practical steps
  • Detailed explanation of using PM2 to manage nodejs processes
  • Detailed explanation of building a rights management system in express in nodejs
  • Detailed explanation of using redis to manage session in nodejs express
  • Configuration method and common commands of nodejs npm package management

<<:  Two ideas for implementing database horizontal segmentation

>>:  CentOS7 upgrade kernel kernel5.0 version

Recommend

How to click on the a tag to pop up the input file upload dialog box

html Copy code The code is as follows: <SPAN cl...

Solve the compatibility issue between MySQL 8.0 driver and Alibaba Druid version

This article mainly introduces the solution to th...

Steps to build MHA architecture deployment in MySQL

Table of contents MAH 1. Introduction to MAH Arch...

How to stop CSS animation midway and maintain the posture

Preface I once encountered a difficult problem. I...

Teach you how to build a react+antd project from scratch

The previous articles were all my own learning lo...

The principle and application of ES6 deconstruction assignment

Table of contents Array destructuring assignment ...

CSS -webkit-box-orient: vertical property lost after compilation

1. Cause The requirement is to display two lines,...

How to add custom system services to CentOS7 systemd

systemd: The service systemctl script of CentOS 7...

Vue uses element-ui to implement menu navigation

This article shares the specific code of Vue usin...

Detailed description of the function of meta name="" content="

1. Grammar: <meta name="name" content...

Why should the number of rows in a single MySQL table not exceed 5 million?

Today, let’s discuss an interesting topic: How mu...

mysql8.0.11 winx64 manual installation and configuration tutorial

First of all, let me talk to you about my daily l...