PhoneGap multiplication table app. Run on web browsers and mobile devices.
Live demo here multip-table-demo
Believe it or not. The whole project on production is only 40.0KB thanks to micro javascript frameworks riotjs, quojs.
#Run demo
You can run the project directly by opening the www/build/index.html file in the browser.
#Run on Web
In order to run project for development in web browser, you need:
- Have NodeJs installed
- Have Grunt installed with cmd
npm install grunt-cli -g - Have Bower installed with
npm install bower -g - Navigate to the
wwwfolder of the project npm installandbower installto install project's dependanciesgrunt devto run in development mode (coffee to js automation, livereload) orgrunt distto run in production mode with html, css, js minimized and all.
#Run as Android App
To run the project as an Android App is a bit more complex.
- Have Java SDK/JDK installed and added to environment PATH
- Have Ant installed and added to environment PATH
- Have adt bundle install and both folder
sdk\platform-tools,sdk\toolsfrom the bundle added to environment PATH - Have git installed
- Have cordova installed with
npm install cordova -g - Either run an Android Emulator or plugin in your Android phone with USB debug enabled.
- Navigate to the root folder of the project and execute cmd
cordova add android - From now on, execute
cordova run androidevery times you wish to deploy app to android device.
