What command do I need to run to install specific version via npm?
If I run the code npm install -g cordova it installs the latest version. Since I\
In addition you can update your package.json file
e.g.
"dependencies": { "ionic": "^1.4.3" }
Where 1.4.3 is ionic version.
1.4.3