How to install specific version of ionic via npm

Syntax

To install a specific version through npm, the following syntax should be followed:

npm install -g ionic@VERSION
  • Where VERSION is the number of the version we want to install from Ionic

Example

Let’s say that we want to install IONIC 1.4.0, because you should specify:

npm install -g ionic@1.4.0

Notes

To see all available versions use: npm info ionic.

Leave a Comment

tech