- First you should installed nodeJS npm. If not yet, refer How to install nodeJS in Windows
- After the installation of nodeJS NPM, Open Command Prompt and type,
npm install -g cordova
- Thats it!
Tag: NPM
How to install NodeJS NPM (Node Package Manager) in Windows
- Goto https://nodejs.org/
- 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.
- Click here to download for Windows 32bit msi installer https://nodejs.org/dist/v6.11.3/node-v6.11.3-x86.msi
- Install it.
- After installation, check whether it is installed or not by using command prompt.
- Open Command Prompt and type,
node --version
or
node -v
And to check npm installed, in Command Prompt type,
npm --version
or
npm -v
- You should see the version details of node.
- Thats it!