Boundary UI Coding Test With Marionette / Browserify TodoMVC
After trying to clean up the original Marionette Backbone TodoMVC by adding a grunt build pipeline with browserify and karma, jasmine, tdd and linting I realized I was taking too long and not making a lot of progress.
I found this and decided to fork it instead. I hope it's clean enough so it's not too painful to read.
API Docs
Demo
Install
Install grunt globally
Install local node modules
1
$ npm install
Run
1
$ npm start
Build
For development:
1
$ grunt init:dev && grunt build:dev
For production:
1
$ grunt build:prod
With watch:
1
$ grunt watch
Front-end Tests/TDD (Didn't finish this):
Requires PhantomJS to be installed globally:
1
$ sudo npm install -g phantomjs
To run tests in TDD watch mode:
1
$ grunt tdd
To run tests once:
1
$ npm test