This section details how to set up Ionic, create a new project and test it.
npm install -g ionic
ionic start <project> <format> --type=angular
ionic start myApp sidemenu
ionic start myApp tabs
ionic start firebase-ionic-simple sidemenu --type=angular
cd firebase-ionic-simple
ionic serve
...
[ng] ℹ 「wdm」: Compiled successfully.
One of the most rewarding aspects is to actually see something tangible. Fortunately, with Ionic, you’re now at a point where you can actually view something and also get a feel for the App you’re trying to build.
http://localhost:8100

http://<x.x.x.x>:8100


Milestone: Ionic App running!
git status
git add .
git commit -m 'Ionic'
git push
Milestone: Your source code is in version control!