EN
NodeJS - how to install nodejs for windows
14
points
NodeJS and npm for windows can be installed in following way.
1. Instalation guid
- Go to official webpage: https://nodejs.org/en/download/
- Click Windows Installer button
- Install program

Hint: do not forget to select
npm
(node package manager) feature and select Add to PATH option - look on abowe screenshot.
2. Usage guid
- Open terminal. e.g. Bash. (installation and running instruction is here)
- Type
node Script.js
ornode.exe Script.js
to run program.

Note: if
node
command does not exist try to rerun bash again.