You can start your new cordova project perfectly with this template.
This template uses:
- 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 install
Automatically checks node js dependencies.package.json
Renamesname
variable if it has a space characters and auto saves. (It needed for npm install)www
Automatically manageswww
folder. You don't need to think about www folder. Your target is alwayssrc
folder.static
Static assets automatically sync on live reload!CordovaHtmlOutputPlugin
Automatically addscordova.js
to html. You don't need to add to your file manually. It's helpful for webpack.manifest.json
Some cordova plugins needs manifest.json in root folder. If you add manifest.json file to yoursrc
folder, our smart hooks automagically copy it towww
folder!
config.xml
Live reload needs<allow-navigation href="*"/>
in development mode. So our smart hooks manages this too. You don't need to think about it.live-reload
Manages live-reload dependencies automatically. Just write your code, and don't think about dependencies.device_router.html
Smart 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.js
In live-reload mode, you can connect to server from multiple devices. This file inject rightcordova.js
file to page. So you can connect to webpack-dev-server from multiple devices at same time.
IMPORTANT: Phonegap build tools not supported currently. I suggest to use cordova with this template.
This template need cordova or phonegap, for more information cordova installation or phonegap installation.
Our Magic words:
cordova create myapp com.iam.myapp MyApp --template cordova-template-f7-beautiful
You can use every cordova | phonegap commands.
You just have one more command option: -- --lr
. It starts live reload.
An alias is also available for --env. Being: If you want to pass app and pay as environment variable use --env --app myApp --page home
In traditional webpack2 format you would do so:
--env.app myApp --env.page home //don't work here
In addition, it is possible to pass using --wp.
:
--wp.env.app myApp --wp.env.page home
52/5000 Você quis dizer: No formato tradicional do webpack 2 você faria assim: In traditional webpack2 format you would do so: Example usage:
cordova run android -- --lr
cordova run browser -- --live-reload
phonegap run ios -- --lr
To define the tags that will be executed in the web pack use the prefix --wp.
, Example: --wp.env.app myApp
You can check:
for more information.