I am new to javascript and trying to figure out a good JS MVC framework to use

I am trying to figure out how to compare and contrast the Javascript MVC frameworks that have been famous recently in the year 2011. I am trying to pick one for my application. My main aim is to pick one so that i can build a solid and well maintainable Js code, easy UI refresh, lesser manual DOM manipulation, faster UI refresh using ajax call to REST services etc..

I am weighing on ember.js, Backbone.js, Knockout.js and Spine.js .. backbone and spine claim as MVC and knockout.js as MVVM. How are they different? is there any other frameworks to be noted?

thanks a lot

link|improve this question

65% accept rate
1  
I think you'd be best served by clicking on the two or three "x vs. y" links on the sidebar under "Related". – Domenic Feb 10 at 22:29
2  
Searched google for "javascript mvc frameworks", this was first link: codebrief.com/2012/01/… – Mike Robinson Feb 10 at 22:33
1  
possible duplicate of Knockout.js vs Backbone.js (vs ?) – Domenic Feb 10 at 22:33
@Domenic: you closed this as "not constructive" but the question is actually very constructive. (Whether it is a duplicate is a different issue!, which I'm not commenting on here.) The answers are not very useful, but as I write this they both have negative scores. That's the beauty of how SO works, and is not the fault of the question. Do you close every question that asks for a comparison? – iconoclast Apr 4 at 14:59
@iconoclast see stackoverflow.com/faq#dontask as well as the definition of not constructive: "This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion." – Domenic Apr 4 at 16:09
show 5 more comments
feedback

closed as not constructive by Domenic, redsquare, Book Of Zeus, casperOne Feb 12 at 17:55

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

Having been in this position recently, I have a recommend investigate the ones you are interested in. Then pick that one and go with it.

If you are working with Asp.Net MVC, you may want to look at knockout as it is the MVC4 Developer Release.

There is no best answer to this question. The best one is the one that does what you need and works well with your coding style. For me, I went with knockout in my MVC3 app.

link|improve this answer
feedback

We compared Backbone.js to JavascriptMVC, and went with Backbone.js because it's very flexible, unobtrusive, and has an awesome event model.

link|improve this answer
javasciptMVC is also great regarding events and brings a lot more in a well designed package. – unludo Feb 15 at 10:58
Really... Why the -1? – erturne Feb 16 at 15:09
Because the conclusion is too fast. Do you have a more elaborated explanation somewhere? I can tell the same arguments as you for javascriptMVC. You are implying in your answer that JMVC does not have these qualities. – unludo Feb 16 at 15:26
Ah, the main reason we used Backbone.js is we needed flexibility in how our projects are organized. JavascriptMVC is very particular about where files are stored and organized; it imposes it's structure on you. We needed to integrate it into an existing app, and the structure that JMVC required was incompatible with ours. That's the whole "unobtrusive" and "flexible" aspects I was talking about. – erturne Feb 17 at 19:18
1  
@erturne: You might want to move the details that are now in your comment to your answer (unless you can't edit it now that the question has been closed). – iconoclast Apr 4 at 15:02
show 2 more comments
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.