Wind Layer Blog

How to Install Node.js and NPM on Windows

Learn how to install Node.js and NPM on Windows with ease. Follow this detailed guide to swiftly set up the tools required for modern web development.

Here’s a guide to walk you through the installation process:

  1. Download the Node.js installer from the official website https://nodejs.org/. Click on either the LTS or Current versions and the installer will start downloading.
  1. After download is complete, double-click on the downloaded file to run the installer.
  1. Tick on the “I accept the terms License Agreement” then click “Next”.
  1. You may choose your preferred installation location by clicking on the “Change” button. You may also install it in the default directory in your Program Files. Click “Next” to continue.
  1. Keep the default settings in the Custom Setup page then click “Next”.
  1. Tick the tick box as shown in the screenshot below and click “Next”.
  1. Click “Install” to continue with the installation.
  1. Once the installation is done, Click “Finish”
  1. “Install Additional Tools for Node.js” window will show. Just press any key to proceed.
  1. The Windows PowerShell will pop-up on the screen to show installation status of additional tools. Type “ENTER” once completed to exit the window.
  1. Verify installation of Node.js and NPM by typing the commands below in the Command Prompt. Command Prompt will show the version of your Node.js and NPM
				
					node -v
				
			
				
					npm -v
				
			
  1. You can also verify the installation from Windows PowerShell by typing the same command.
				
					node -v
				
			
				
					npm -v
				
			
  1. Test your Node.js by opening it and typing any command related to node.js
Share the Post:

Related Posts