How to install Ionic v1? After the official guides, install v2

I have completed the installation guide for ionic v1 , but the ionic name of the empty project is working

creates Ionic v2 app.

In the documents of the current version, I found

Once this is done, create the first Ionic app:

$ ion launch cutePuppyPics

Add -v1 if you like to use Ionic 1

However, I cannot figure out where this v1 should be added. We tried various places, but always get an error or v2.

+4
source share
4 answers

use command:

ionic start myApp blank --v1
+1
source

The accepted response results in ERROR indicating the --v1 and --v2 flags were deleted, so now the command will look like

ionic start myApp blank --type ionic1
+6

, ionic1 ionic2. node.js cordova node.js .

ion start (name of your application) (application category) - type ionic1 or ionic2

For example: if you want to create a sidemenu application in ionic1, follow this syntax.

ion launch myApp sidemenu --type ionic1

+1
source

you can use:

ionic start myApp blank --type=ionic1
0
source

Source: https://habr.com/ru/post/1675531/


All Articles