How to install NodeJS NPM (Node Package Manager) in Windows

  1. Goto https://nodejs.org/
  2. Scroll down to see installer download option for your OS, if you can’t find, goto https://nodejs.org/en/download/ there your can find installer for your OS.
  3. Click here to download for Windows 32bit msi installer https://nodejs.org/dist/v6.11.3/node-v6.11.3-x86.msi
  4. Install it.
  5. After installation, check whether it is installed or not by using command prompt.
  6. Open Command Prompt and type,
    node --version

    or

    node -v

    And to check npm installed, in Command Prompt type,

    npm --version

    or

    npm -v
  7. You should see the version details of node.
  8. Thats it!