Skip to main content

Detail steps to create ionic project

You can create ionic sample application with below steps:

Configuration Steps#

Step 1: First, you need to install Node.js. Then, install the latest Ionic command-line tools in your terminal.

$ npm install -g ionic

Step 2: Create ionic blank application via below command:

/workspace$ ionic start MyIonicApp blank

Step 3: We can Run ionic app in browser for instant result

/workspace$ cd MyIonicApp/
/workspace/MyIonicApp$ ionic serve

Step 4: Add android platform to ionic application via below command:

workspace/MyIonicApp$ cordova platform add android