[tutorial] How to prepare computer for programming using Ionic

Hi all beginners,

I have prepared three videos “How to prepare you develompment computer”.

  1. Install Chrome
  2. Install (as administrator) Node.js from http://nodejs.org
  3. Restart
  4. Install Cordova
    npm install -g cordova
  5. Install Ionic CLI
    npm install -g ionic
  6. Set PATH variable (as administrator) to include npm modules
  7. Restart
  8. Install (as administrator) Sublime Text 2 (IDE)
  9. Run
    ionic start [nameOfApp] [template]
    ionic start myApp tabs
  10. Change directory to your app folder
    cd myapp
  11. Run Ionic serve command with livereaload
    ionic serve -l
  12. Open web browser Chrome, http://localhost:8100
  13. Using Sublime Text open www folder inside your app folder