In this article we will learn about Ionic framework - 'ionic' is not recognized as an internal or external command.
Solution :
Below simple steps to follow to get it working:
- install Node.js
- Install Ionic and cordova :
npm install -g cordova ionic
- create a simple project:
ionic start mySampleApp tabs
cd
mySampleApp
ionic cordova platform add android
- Build the project:
ionic build android
Post a Comment