Offers you a Yeoman generator to initiate a Web application with the following workflow:
This generator combines the best features of other generators like generator-angular, ngTailor and generator-gulp-webapp into an optimal workflow for starting applications with AngularJS powered by Gulp!
generator-gulp-angular scaffolds an AngularJS application with a full-featured gulpfile.js, giving you immediate out-of-the-box access to all tasks for modern web development.
My intention is to create a generator that gives users total control over their development toolbox so they can immediately start projects with their preferred tools, such as specific UI frameworks or JavaScript preprocessors.
Install the required tools: yo, gulp, bower
npm install -g yo gulp bower
Install generator-gulp-angular:
npm install -g generator-gulp-angular
Make a new directory, and cd into it:
mkdir my-new-project && cd $_
Run yo gulp-angular, optionally passing an app name:
yo gulp-angular [app-name]
yo gulp-angular --help or yo gulp-angular -h for help. All options are not required. If not provided, default values will be used.
--app-path='src'customize Angular's app folder, relative to cwd, default issrc--dist-path='dist'customize build target folder, relative to cwd, default isdist--e2e-path='e2e'customize e2e test specs folder, relative to cwd, default ise2e--tmp-path='.tmp'customize pre-processing temp folder, relative to cwd, default is.tmp--skip-installdo not runbower installandnpm installafter generating the app, default isfalse(not skip)--skip-welcome-messageskip yo welcome messages, default isfalse(not skip)--skip-messageskip install messages, default isfalse(not skip)--defaultuse default configurations, default isfalse--advancedprompt for advanced additional features, default isfalse
All paths configuration are stored in gulpfile.js. Change gulp.paths in gulpfile.js if you want to config paths after the app is generated.
gulporgulp buildto build an optimized version of your application in/distgulp serveto launch a browser sync server on your source filesgulp serve:distto launch a server on your optimized applicationgulp wiredepto fill bower dependencies in your.htmlfile(s)gulp testto launch your unit tests with Karmagulp test:autoto launch your unit tests with Karma in watch modegulp protractorto launch your e2e tests with Protractorgulp protractor:distto launch your e2e tests with Protractor on the dist files
Best Practice Recommendations for Angular App Structure
The root directory generated for a app with name gulpAngular :
├── src/ │ ├── app/ │ │ ├── main/ │ │ │ ├── main.controller.js │ │ │ ├── main.controller.spec.js │ │ │ └── main.html │ │ └── index.js │ │ └── index.(css|less|scss) │ │ └── vendor.(css|less|scss) │ ├── assets/ │ │ └── images/ │ ├── components/ │ │ └── navbar/ │ │ │ ├── navbar.controller.js │ │ │ └── navbar.html │ ├── 404.html │ ├── favico.ico │ └── index.html ├── gulp/ ├── e2e/ ├── bower_components/ ├── nodes_modules/ ├── .bowerrc ├── .editorconfig ├── .gitignore ├── .jshintrc ├── bower.json ├── gulpfile.js ├── karma.conf.js ├── package.json ├── protractor.conf.js
- useref : allow configuration of your files in comments of your HTML file
- ngAnnotate : convert simple injection to complete syntax to be minification proof
- uglify : optimize all your JavaScript
- csso : optimize all your CSS
- rev : add a hash in the file names to prevent browser cache problems
- watch : watch your source files and recompile them automatically
- jshint : JavaScript code linter
- imagemin : all your images will be optimized at build
- Unit test (karma) : out of the box unit test configuration with karma
- e2e test (protractor) : out of the box e2e test configuration with protractor
- browser sync : full-featured development web server with livereload and devices sync
- angular-templatecache : all HTML partials will be converted to JS to be bundled in the application
- TODO lazy : don't process files which haven't changed when possible
- jQuery: jQuery 1.x, 2.x, Zepto, none
- Angular modules: animate, cookies, touch, sanitize
- Resource handler: ngResource, Restangular, none
- Router: ngRoute, UI Router, none
- UI Framework: Bootstrap, Foundation, Angular Material, none (depends on the chosen CSS preprocessor)
- UI directives : UI Bootstrap, Angular Strap, official Bootstrap JavaScript, Angular Foundation, official Foundation JavaScript, none (depends on the UI framework)
- CSS pre-processor: Less, Sass with Ruby and Node, Stylus, none
- JS preprocessor: CoffeeScript, TypeScript, ECMAScript 6 (Traceur and 6to5), none
- HTML preprocessor: Jade, Haml, Handlebars, none
- TODO Script loader: Require, Browserify, none
- TODO Test framework: Jasmine, Mocha, Qunit
Protractor tests are not stable with PhantomJS, at least not on my Mac. I'm getting unpredictable disconnections between webdriverjs and phantomjs.
I tried many configurations for Protractor without success, any hint would be appreciated.
All changes listed in the GitHub releases
MIT



