Download Node from Official Website Link https://nodejs.org/en/download
Select the appropriate version of the `node.js` for your operating systems.
For ex: Download the 64-bit version, if you’re using a 64-bit operating system, and Download the 32-bit version, if you’re using the 32-bit version.
After the Node Extension download on your machine, double-click on the extension file and run it.
While the extension executing on your machine will ask you to accept the Node.js license agreement. To move forward, check the “I accept” box and click on the Next button.
After Accepting the License, it will ask you to select the destination location where you want to install Node.js. If you do not want to change the directory, then go with the default location and click the Next button.
Now, you just need to click on the `Next` button and it will start installing the setup on your computer.
next step, it will ask for additional packages and tools to install with the `node` on your computer such as `chocolatey`. Optional, you can choose which components to install. For most users, the default selection is fine. Click "Next" to proceed.
The node Installation script will also set the node destination folder path in `Environment Path Variable` so that we can run node commands from command prompts.
Now installation steps have been completed. Now, we can check whether a node has been installed on our machine or not.
To check the Node.js and NPM (Node Package Manager) Installed Version on our machines. we can use the below commands to check node versions.
// we check Node Version using `-v` and `--version` node -v or node --version // we check NPM Version using `-v` and `--version` npm -v or npm --version
Note: Output can be different on your machines.