TodoMVC - A common demo application for popular JavaScript MVC frameworks
1–10 of 11 posts
Re: TodoMVC - A common demo application for popular JavaScript MVC frameworks
#2For the (historical) record, it was originally introduced by Nick Fitzgerald in this commit:
https://github.com/documentcloud/backbone/pull/29
... and then later styled up by Jérôme Gravel-Niquet.
Re: TodoMVC - A common demo application for popular JavaScript MVC frameworks
#3Re: TodoMVC - A common demo application for popular JavaScript MVC frameworks
#4Jeremy Ashkenas then proposed to make it open source as an example app so that people could learn from it too. I finally had a chance to contribute to open source (but I did not know it would be a significant contribution)
I'm just glad it's been picked up by so many frameworks along the way. I think this is in big part due to the fact that it had just the right amount of simplicity / complexity and is perhaps one of the most basic use case for a framework like that. The new "Hello World" first-timer experience.
Re: TodoMVC - A common demo application for popular JavaScript MVC frameworks
#5Re: TodoMVC - A common demo application for popular JavaScript MVC frameworks
#6I built this thing as a learning experience. Jeremy Ashkenas then proposed to make it open source as an example app so that people could learn from it too. I finally had a chance to contribute to open source (but I did not know it would be a significant contribution) I'm just glad it's been picked up by so many frameworks along the way. I think this is in big part due to the fact that it had just the right amount of…
Re: TodoMVC - A common demo application for popular JavaScript MVC frameworks
#7Re: TodoMVC - A common demo application for popular JavaScript MVC frameworks
#8I'm currently experimenting with Backbone.js but I find it a bit hard to adjust to MVC in the browser. Tutorials on the web are also not very helpful and most of them incomplete; but I'm not giving up :)
Re: TodoMVC - A common demo application for popular JavaScript MVC frameworks
#9Lovely! Is there a site for comparing implementations of "things"/methods in different languages/frameoworks in similar fashion? That would have been really neat to learn new languages - instead of reading books (not the best noob move).
Re: TodoMVC - A common demo application for popular JavaScript MVC frameworks
#10Has anyone experimented with this frameworks? I'm curious to know which one is the best in terms of how long will they be supported, adoption, features, and ease of use. I'm currently experimenting with Backbone.js but I find it a bit hard to adjust to MVC in the browser. Tutorials on the web are also not very helpful and most of them incomplete; but I'm not giving up :)
I've learned to mostly get the hang of it after repeated references to the official docs and the todo app. I think part of the difficulty is its lack of rigidity -- Backbone.js leaves quite a bit up to conventions, or the developer.