generator-ionic1-basic
v1.0.0
Published
A Yeoman generator for basic Ionic 1.x projects
Maintainers
Readme
A Yeoman generator for a basic Ionic 1.x Project
This is a yeoman generator for a basic Ionic 1.x Project. It is a basic Ionic app template that sets up everything to get you started with Ionic with ease. This generator is currently using Ionic 1.2.4 and Angular 1.4.3.
This is an alternative project structure for the Ionic Framework demonstrated with the ionic tabs starter.
Features
- Gulp jobs for development, building, emulating and running your app
- Compiles and concatenates your Sass
- Local development server with live reload, even inside ios emulator
- Automatically inject all your JS sources into
index.html - Auto min-safe all Angular DI through
ng-annotate, no need to use weird bracket notation - Easily customize Ionic styles from within your Sass
- Comes already with ng-cordova and lodash included
Prerequisite
You should have Yeoman installed globally
npm install -g yoHow Use This Repo
Clone this repo
$ git clone https://github.com/flavordaaave/ionic_better_structure.gitHow To Install Using Yeoman
To install generator-ionic1-basic from npm, run:
npm install -g generator-ionic1-basicCreate a new project folder (e.g. 'myApp') for your app and clone this repository into it.
$ cd mkdir myAppFinally, initiate the generator:
yo ionic1-basicjust before creating a build, just run:
ionic state restoreto restore the Cordova plugins.
How this project is structured
All working files are underneath the 'src' folder trying to follow the angular styleguide created by johnpapa.
/src
/app
/images
/lib
/styles
index.htmlEverything is set up to serve from this src folder using
$ ionic serveBuild process
This project comes with a before_build hook to run the 'gulp build' task before actually building the app with cordova. The 'gulp build' task concatenates, minifies and copies the files into the 'www' folder from where cordova is loading the files. So you can just use the standard ionic build commands:
$ ionic platform add ios
$ ionic build ios
$ ionic emulate iosIncluded gulp tasks
A bunch of useful gulp tasks have been copied from the HotTowel yeoman generator created by johnpapa and modified to work with ionic.
Task Listing
gulp helpDisplays all of the available gulp tasks.
Code Analysis
gulp vetPerforms static code analysis on all javascript files. Runs jshint and jscs.
gulp vet --verboseDisplays all files affected and extended information about the code analysis.
Testing
gulp testRuns all unit tests using karma runner & jasmine with phantomjs. Depends on vet task, for code analysis.
Cleaning Up
gulp cleanRemove all files from the build and temp folders
gulp clean-imagesRemove all images from the build folder
gulp clean-codeRemove all javascript and html from the build folder
gulp clean-fontsRemove all fonts from the build folder
gulp clean-stylesRemove all styles from the temp and build folders
Fonts and Images
gulp fontsCopy the ionic fonts from source to the build folder
gulp imagesCopy all images from source to the build folder
Styles
gulp stylesCompile less files to CSS and copy to the build folder
Lib Files
gulp wiredepLooks up all bower components' main files and JavaScript source code, then adds them to the
index.html. The.bowerrcfile also runs this as a postinstall task wheneverbower installis run.NOTE: wiredep will only grab the bower dependencies that are listed in you bower.json file. Use the
--saveflag when installing dependencies via bower to add them to automatically add them to you bower.json file.
Angular HTML Templates
gulp templatecacheCreate an Angular module that adds all HTML templates to Angular's $templateCache. This pre-fetches all HTML templates saving XHR calls for the HTML.
gulp templatecache --verboseDisplays all files affected by the task.
Serving Development Code
ionic serveYou can us the standard ionic serve task here.
Building Production Code
gulp optimizeOptimize all javascript and styles, move to a build folder, and inject them into the new index.html
gulp buildCopies the ionic fonts, copies images and runs
gulp optimizeto build the production code to the build folder.
NOTE: This project contains a before_build hook for cordova which so that the gulp build task is run automatically when building with cordova build [platfrom] or ionic build [platfrom]
License
MIT
