What version of nodejs to install ionic cord 2.0.0-beta.3

0

There are many versions of nodejs, I noticed that if I have the latest version of nodejs, I can not install a previous version of ionic, I tried after installing the nodejs is entered in the terminal as administrator I forced the installation this way (I'm using Windows 10 and another machine with 8.1):

command: npm install -g cordova [email protected]

error generates ionic installation.

    
asked by anonymous 28.11.2016 / 14:59

1 answer

0

Go to link Install the left option (6.9.1) You will basically need NPM to install some dependencies, and the ionic itself.

After installing the node, do:

npm install -g corona ionic

After installing the project, make sure the ionic was successfully installed by typing the following command at your command prompt:

ionic

If you wanted to start an Ionic 2 project, type:

ionic start --v2 my Sidemenu project (or another template of your choice). If you want version 1.0 of the ionic, do not type --v2.

For more information, take a look at link

    
28.11.2016 / 16:34