This tutorial describes how to create and run PhoneGap, Apache Cordova and Ionic applications with IntelliJ IDEA.
1. Enable frameworks support
PhoneGap, Apache Cordova and Ionic frameworks support is available in IntelliJ IDEA, WebStorm and AppCode via this plugin. To install it, go to Settings → Plugins → Install JetBrains plugin…, then select PhoneGap/Cordova Plugin and click Install plugin.
2. Configure the executable path
The next step is to configure the executable path for PhoneGap/Cordova/Ionic CLI via Settings → Languages and Frameworks → JavaScript → PhoneGap/Cordova.
3. Create or open an application
To open an existing PhoneGap/Cordova/Ionic application, simply select its folder via File → Open menu. Your IDE will detect the application and perform all required configuration steps automatically.
Creating a new application takes just a tad longer: click File → New Project…, then select Static Web, and then PhoneGap/Cordova App.
Click Finish, and the IDE will create a new application and all the files it requires:
4. Run your application
To deploy and run your application, you need to create a so called Run Configuration. For that, go to Run → Run Configurations… and use the Add button on the left to create a PhoneGap/CordovaRun Configuration.
Notice that it's created with default path and other settings, but you can,of course, change any of them as you need.
After the configuration is saved, use it to run your application via Run button on the toolbar or via the Run menu:
In the Run tool window that appears after the application is started you can find the output and logs:
If you're using the emulate command, an emulator will be automatically launched before application deployment.