This is a simple Cordova app based on backbone.js and Onsen UI V2. The app is for testing / learning purposes and displays fictitious "company profiles", whose data is provided by this JSON file.
The fake company data was generated courtesy of joke2k's Faker package. This is the python script that I wrote to generate this data.
I used the Bootstrapping approach to have the data available when rendering the page.
When you run the app, it displays the first company profile, and you can go to the next one on leftswipe
. Similarly, you can display the previous one on rightswipe
. See what's actually happening below
git clone https://github.com/engineervix/cordova-onsenui-backbone-test
cd cordova-onsenui-backbone-test
npm install
cordova plugin add cordova-plugin-statusbar
cordova plugin add cordova-plugin-splashscreen
cordova platform add android
cordova platform add browser
# 1. on your device or emulator
cordova run android
# * if you want to see logs (console output) from your device
# ** (optional) clear the logs before `cordova run android`
adb logcat -c
# ** show the console output
adb logcat | grep -i "chromium:"
# 2. in the browser
cordova run browser