Introduction To Node.js
Jan 6, 2021
Node.js is an open-source server environment that allows you to run JavaScript on the server.
Installing & Running Node.js: Windows
- Visit nodejs.org and download the LTS version of Node.js for Windows by clicking the “Windows Installer” option.
- Run the downloaded Node.js
.msi
Installer - accept the license and select the folder to install.
- This step requires Administrator privileges, and you may need to authenticate
- To ensure Node.js has been installed, run
node -v
in your terminal - you should get something likev15.3.0
- Update your version of npm with
npm install npm --global
- This step also requires Administrator privileges so you may need to authenticate