My personnal web app seed project.
- It's based on AngularJS, coffeescript and less.
- Uses git submodules inside
app/libdirectory for project dependencies - Customizable scripts for rapid web development
To start using, just clone this repo then init the submodules.
git submodule init && git submodule update
To run the dev server:
./scripts/web-server.js
- Application code is located in app/coffee
- The use of coffeescript requires that Angular be bootstrapped manually.
ng-apphas been removed fromhtmlelement ofindex.htmlangular.bootstrapcalled inapp.coffee
- In
angular-seedcontrollers are defined as global functions. Since coffeescript runs in an anonymous function, the controllers need to be attached directly to thewindowobject
- include angular-ui lib
- use Require.js
- Port tests to coffeescript (currently still js)
- add build system
- add modernizr
- Update loader.js/$script.js | @angular/angular-seed #40