You can start your new cordova project perfectly with this template.
This template uses:
- [Typescript]
- Framework7 3
- Vue Js 2
- Vuex
- Webpack 4
- Cordova
- Babel Loader 7
- Cordova: 6.0.0
- Node.js: 6.5.0 (Supports ES6)
For live-reload i can't find easy way to do fixed version of this. But you can develop your app with this way:
cordova platform add ios browser(browser needs for development in live-reload mode.)cordova run ios -- --lr(wait till app opens in your ios emulator or phone. it will close console output after publish, so live-reload will not work. don't close the app and go to next step.)cordova run browser -- --lr(you can use live-reload in your phone-emulator and browser at same time. you can edit your files in live-reload mode now.)
Hooks are smart. They can fix some problems for you. Fix list:
npm installAutomatically checks node js dependencies.package.jsonRenamesnamevariable if it has a space characters and auto saves. (It needed for npm install)wwwAutomatically manageswwwfolder. You don't need to think about www folder. Your target is alwayssrcfolder.staticStatic assets automatically sync on live reload!CordovaHtmlOutputPluginAutomatically addscordova.jsto html. You don't need to add to your file manually. It's helpful for webpack.manifest.jsonSome cordova plugins needs manifest.json in root folder. If you add manifest.json file to yoursrcfolder, our smart hooks automagically copy it towwwfolder!
config.xmlLive reload needs<allow-navigation href="*"/>in development mode. So our smart hooks manages this too. You don't need to think about it.live-reloadManages live-reload dependencies automatically. Just write your code, and don't think about dependencies.device_router.htmlSmart router in live-reload mode. It searches for best available ip for connect server. if it can't find, you can write ip:port manually.CordovaDeviceRouter.jsIn live-reload mode, you can connect to server from multiple devices. This file inject rightcordova.jsfile to page. So you can connect to webpack-dev-server from multiple devices at same time.
cordova create <project_create_dir> [com.example.projectname] [ProjectClassName] --template <template_path>You can use every cordova commands.
You just have one more command option: -- --lr. It starts live reload.
Example usage:
cordova run android -- --lr
cordova run browser -- --live-reload
And 🎉 that's all folks!
We can use Microsoft Cordova-Simulate using:
You can check:
for more information.