"Ember command line utility for ambitious web applications."
http://iamstef.net/ember-cli
$ npm install -g phantomjs
$ npm install -g ember-cli
$ npm install -g bower
$ ember new my-app
$ cd my-app
$ npm link ember-cli
$ ember server
$ git clone git@github.com:stefanpenner/ember-cli.git
$ cd ember-cli
$ npm link
// go build a project using ember new ...
$ cd your-ember-app
$ npm link ember-cli
Handles all front end concerns... js, styles, etc.
Consider your front-end app as its own app that communicates with an API server
public/
put fonts, images etc in public
they'll get copied over during your build / server
app/styles/app.css
=> assets/application-name.css
$ bower install --save foundation
Then `import` it in your Broccoli.js file
app.import('vendor/foundation/css/foundation.css');
$ npm install --save-dev broccoli-sass
$ bower install --save foundation
$ mv app/styles/app.css app/styles/app.scss
Then use an scss import in app.scss
@import 'vendor/foundation/scss/foundation';
bower install --save moment
app.import('vendor/moment/moment.js');
.jshintrc => predef
$ ember server --proxy http://localhost:3000
$ ember build --environment production