How To Install Node.js and NPM On Windows?

Node.js is a popular JavaScript runtime used to create server applications. The NPM or Node Package Manager is used to install 3rd party modules, libraries, and packages for the Node.js. In this tutorial, we examine how to install Node.js and its package manager NPM on Windows operating systems.

Download and Install Node.js

The node.js and Npm is provided as two versions via the Node.js . These versions are Long Term Support or LTS and Current versions. The node.js can be downloaded via the following link.

https://nodejs.org/en/

Long Term Support or LTS version is recommended for most of the users as it provides stability for features and syntax. It is well tested and less error-prone.

Current version is the latest version with the latest features but a little bit unstable and less tested. If you plan to use the next LTS version then current the Current version can be used which will mostly be compatible with the next LTS version. As we can see the current version is 17.8.0 .

Download Node.js and NPM

After downloading the installer double-click it to start the installation. The first screen for the Node.js installation is like below. Just click to the Next.

Start Node.js Installation

In this En-User License Agreement screen we accept the license agreement of the Node.js.

Node.js End-User License Agreement

Destination Folder configuration can stay as it provides the Node.js installation location.

Node.js Setup

Custom Setup screen is used to specify components to install and some basic configuration about Node.js.

Custom Setup

Npm is a complete environment and tool which requires a lot of 3rd party libraries. These tools and libraries can be installed automatically by checking the checkbox.

Now Node.js is ready to install just click to the Install button.

When the installation is completed successfully the following screen is displayed.

With the following screen and script, the Python and Visual Studio Build Tools will be installed which is required to build Node.js native modules.

Install Additional Tools for Node.js

The previous process continues with the following PowerShell terminal.

When everything is completed the following screen is diplayed.

Check Node.js Version

The installed node.js and NPM version can be checked with the -v options below. To check node.js version used the following command.

> node -v

The NPM version can be checked with the following npm command.

> npm -v
Check Node.js Version

Leave a Comment