todomvc-backbone-es6 icon indicating copy to clipboard operation
todomvc-backbone-es6 copied to clipboard

Backbone TodoMVC rewritten using ES6

Results 7 todomvc-backbone-es6 issues
Sort by recently updated
recently updated
newest added

new url is https://tastejs.github.io/todomvc-backbone-es6 or http://tastejs.com/todomvc-backbone-es6/

Classes in ES6 [require `super()` to be called before you can use `this`](http://www.2ality.com/2015/02/es6-classes-final.html#super-constructor_calls) in a constructor ([now enforced in Babel 5.x](http://babeljs.io/blog/2015/03/31/5.0.0/#class-changes)), but `todo-app.js` needs to do this a few times...

Would be nice to npmify the traceur and backbone.localstorage libs so we can remove the lib folder.

enhancement

I'm curious why you have [lodash & underscore](https://github.com/addyosmani/todomvc-backbone-es6/tree/gh-pages/app/bower_components) folders? Could a [lodash.underscore](https://github.com/lodash/lodash/#download) be needed, or could just the Underscore references be changed into Lo-Dash?

A thought that just crossed my mind: Generators would be perfect for reading todo items from localStorage since all of them are stored under separate keys and each access is...

I've managed to get a full production build workflow going. You can see this in my fork here - https://github.com/guybedford/traceur-todomvc The production app is at index-built.html I haven't created a...

This might not be something docco is very good at---maybe a post-processing step that works off of some tag (`#es6`) or something would be better---but it would be cool if...