How to install Node.js & npm on Windows
In the first steps in using Node.js is the installation of the Node.js libraries on the client system. Now a day npm is coming with Node.js file. To perform the installation of Node.js, follow the below steps;Step 1) Go to the site https://nodejs.org/en/download/ and download window installer file for node.js. In our example, we are going to download the 64-bit setup files for Node.js..
Step 2) Right click on the downloaded .msi file to start the installation. Click the Install option on the first screen to begin the installation.
Step 3) In the next screen, click the "Next" button to continue with the installation
Step 5) It will automatically select the path or you can optionally choose path by using "Change " button. Here we are going to Just Click on "Next" button.
Step 6) Accept the default components and click on the "Next" button.
Step 7) Click on "Next" button and it will install the default.
Step 8) Finally Click on "Install" button to start installation. If it is asking for any permission,please allow/accept it.
Step 9) Click on "Finish" to Close the window. Now Node.js & npm has installed in our system.
Node.js version Command- node --version & click enter
Here Node.js version 12.18.2 has installed as shown below
npm version Command- npm --version & click enter
The below window is showing the result npm version 6.14.5
Comments
Post a Comment