Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get the version of ionic framework?

I wonder how to check the version of ionic. If I do ionic -v I get back 1.4.3

Can that be? Wasn't 1.0.0 just released?

like image 830
brainray Avatar asked May 18 '15 13:05

brainray


People also ask

How do I know if Ionic is installed?

You can verify your installation with the ionic --version command.

How do I check my ionic plugins version?

To find the locally installed version of Cordova CLI run cordova -v (If you are using Ionic, this version is also included in the ionic info output). Then compare the returned version number to the output of npm info cordova version (You can also check manually for the newest available version on npm or GitHub).


1 Answers

Run from your project folder:

$ ionic info  Cordova CLI: 5.0.0 Ionic Version: 1.0.1 Ionic CLI Version: 1.6.1 Ionic App Lib Version: 0.3.3 OS: Windows 7 SP1 Node Version: v0.12.2 

If your CLI is old enough, it will say "info is not a valid task" and you can use this:

$ ionic lib  Local Ionic version: 1.0.1  (C:\stuff\july21app\www\lib\ionic\version.json) Latest Ionic version: 1.0.1  (released 2015-06-30) * Local version up to date 
like image 81
scw Avatar answered Oct 02 '22 15:10

scw