An AngularJS 1.x project seed which aims to keep it simple.
- Development HTTP server
- Gulp as the task runner
- Bower for managing front-end assets
- Sass for styles
- Plain JavaScript (Maybe ES6/TypeScript in the future)
- Support for source maps
- Serve Angular templates from the templateCache
- Support for Angular minification with ng-annotate
- JShint scripts
- Support for LiveReload
- Configure which tasks to run through
gulpconfig.json - Enable application debugging by setting
localStorage.debug = 1
npm install
bower install
gulp
gulp- by default runs the development tasksgulp prod- build app for productiongulp dev- build app for development - compile assets, compile app, start server, watch for changesgulp assets- only compile assetsgulp app- only compile app filesgulp serve- starts a web server onlocalhost:8080gulp watch- watches scripts for changes, enable livereload