I just installed Node.js and npm (for additional modules).
Node.js
npm
How can I update Node.js and the modules which I\'m using to the latest versions
For Cygwin users:
Installing n (node version manager) in Cygwin doesn't work, instead update node with:
Cygwin
wget https://nodejs.org/download/release/latest/win-x64/node.exe -OutFile 'C:\pathto\nodejs\node.exe' # Updating npm npm i -g npm
Yes, you need to install wget first.
wget