We've been using JavascriptMVC (aka, "JMVC") for a few months now, and we're very happy with it.
PROS:
- The best feature is probably its Controllers. A JMVC Controller "controls" a particular dom element ... this can range from a small dom element like a single span, to a div that contains hundreds of children. You simply attach a controller to a dom element, and from there your controller "controls" the element. All methods on your controller which match a jQuery event will be registered automatically on your dom element. So if a click event occurs on a child element, it will bubble if to your container dom element, at which point your controller handler method will be called.
The result of using Controllers is clean, tight code that is easy to find. Features are implemented exactly where you thought they'd be.
The way models raise events is also nice (though many frameworks offer the same kind of feature). When any model attribute changes, the model will either raise a change event or, if there is an error, an error event. These events are actually just jQuery events (you can actually wrap any object, even something that's not a dom element, into a jQuery wrapped set and then fire jQuery events from it). This has let us clean up and simplify some code that was keeping edited values in sync with labels elsewhere on the page (just having models results in simpler code and less code).
There are many, many other nice things. JMVC's Steal lets you express dependencies, load only what you need, and later minimize your code in production. The unit testing and functional testing story is pretty darn good. And more.
CONS:
The only thing close to a "con" is just that JMVC doesn't add all that much over jQuery. But that is also an advantage. What I mean is, each time I've delved into the source of JMVC, I've found that we could have built that area ourselves in a matter of a few weeks. Now, it's great to have a head start, and to be able to use the well-tested, robust code from JMVC. But it's not like what it gives you is so huge you couldn't think of doing it yourself, and sometimes that might be the better option. Other frameworks, that perhaps have been around longer, would be nearly impossible to replicate while also under the gun for delivering a product to your business customers. For example, jQuery itself and its peers like prototype, mochiKit, etc, have years of cross-browser capabilities baked into them that you'd never want to try to replicate from scratch. Frameworks like SproutCore give you entire large GUI frameworks with tons of documented extension points. YUI or other similar frameworks give you tons of UI widgets among other things. JMVC is just not that huge. It gives you a nice head start. But not being huge also has benefits -- if you need to really delve in to an area under the hood, you can get your arms around it in a fairly short period of time. For example, to dig into how JMVC handles model attribute changes, including change events and validations, by analyzing its source code, took about 3 hours start to finish.