How to Install Node with NVM(Node Version Manager)

How to Install Node with NVM(Node Version Manager)

ยท

2 min read

Hi

Today we will learn how to install node.js with NVM Most of us don't know what node.js is in programming

Node.js is a back end language. It is a platform built on Chrome's JavaScript runtime for easily building fast and scalable network applications. Node.js is an open source, cross-platform runtime environment for developing server-side and networking applications. It is written in JavaScript.

What is NVM? NVM(Node.js Version Manager) makes it easier to install and manage multiple versions of Node.js on a single local environment. It allows us to switch between different versions of node.js easily.

How to install NVM On windows, go to %[github.com/coreybutler/nvm-windows#installa.. Go into the downloaded zip file on your computer and double click the installer.

Continue through all of the prompts. Then, click install.

To check the node version you have

Open your terminal and type

nvm --version

To install the latest version of node Type

nvm install latest

To install any version you want

nvm install 14.0.0 or any version you want

To see all the version you have installed

nvm list

To choose which version to use

nvm use 14.0.0 or any version you wish to use

This is my first blog post. Please tell me what you think in the comment section And don't forget to give this a thumbs up๐Ÿ˜‰

ย