Set up the development environment
Learn how to set up your local environment to develop Ionic apps like a professional and also learn how to install Ionic Full Starter App.
Last updated
Was this helpful?
Learn how to set up your local environment to develop Ionic apps like a professional and also learn how to install Ionic Full Starter App.
Last updated
Was this helpful?
Ionic apps are created and developed primarily through the Ionic utility. The Ionic CLI is the preferred method of installation, as it offers a wide range of dev tools and help options along the way.
Before proceeding, make sure the latest version of and are installed. See for details. Install the Ionic CLI globally with npm:
Almost all tooling for modern JavaScript projects is based in . The has prebuilt installation packages for all platforms. We recommend selecting the LTS version to ensure best compatibility.
Node is bundled with , the package manager for JavaScript.
To verify the installation, open a new terminal window and run:
Although it's not required, the version control system is highly recommended. First, install the command-line utility from the . For a GUI client, we recommend .
To verify the installation, open a new terminal window and run:
After you have Ionic installed, you have to install all the dependencies required by the app. To do this just run the following command using a terminal inside your ionic app folder path.
Now we have everything installed, we can test our Ionic App.
The coding of the app will happen inside of a code editor. Personally we use , however, many people like . You are free to choose any code editor you like.
Go to section to see how to do it.