For the last year I have been developing a lot in javaScript using jQuery an ketchup.
What I was lacking on was structuring and testing.
So I went out googling and found javascriptmvc. This framework looks very interesting and comprehensive but also has a learning curve.
I am wondering what you think of javascriptmvc?

What are the pros and cons of using this? I am very interested in your opinion. Thank you!


Note added:
"I am also particular interested in people who have used or know about using javascriptmvc in projects for mobile devices."

link|improve this question

50% accept rate
You should include a link to the website of the product you're asking about. – Lee Dec 16 '10 at 6:12
Thanks for the comment. Your suggestion is implemented. – Timo Dec 16 '10 at 6:17
MVC is really when you have lot of interaction with data and update data and make lot of ajax calls for data/// we can make a clear separation of data and UI – kobe Dec 16 '10 at 6:21
1  
go to this website art.com/photostoart and see the javascript files, we have three files mediator.js , model.js , controll.js , we implemented it recently – kobe Dec 16 '10 at 6:24
feedback

5 Answers

We've been using JavascriptMVC (aka, "JMVC") for a few months now, and we're very happy with it.

PROS:

  1. 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.

  1. 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).

  2. 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.

link|improve this answer
Thanks for the write-up, Charlie. Very useful info. – treeface Dec 16 '10 at 17:40
Thanks. Greatly appreciated. – Timo Dec 17 '10 at 4:29
1  
I'd argue that although jmvc might not deal with annoying and tricky problems like cross browser comparability (except for FuncUnit), it is very unlikely you could build the something that covers the same ground (without years and multiple projects). For example, controller handles things like inheritance, a jquery plugin, default options, teardown of event handlers, warning you of correct naming, and it adds a class name for easy debugging. – Justin Meyer Jan 17 '11 at 21:03
1  
@Justin, I agree with you and I think what I said is in line with what you said, but others might misread it, so this is good clarification. First, I said we could have built "an area" ourselves. For ex, we could have built from scratch the ability for our models to know what their attributes are and fire events when they change, ourselves, within a few weeks. Then, we could have built our own "validations" in a few weeks. But these are only "pieces" of what JMVC gives you, and JMVC gives you a large number of these pieces. Also, FuncUnit is a much bigger piece as well. – Charlie Flowers Feb 16 '11 at 5:30
feedback

If you are into structuring your Javascript code following MVC pattern and want to follow similar principles, then I would in addition suggest you to look at Backbone.js

link|improve this answer
Thanks Mahesh. Would you suggest Backbone.js over javascriptmvc in regards to structuring Javascript? If so, why? – Timo Dec 16 '10 at 6:30
@Mahesh howz is backbone.js different from mvc , can you explain it more if you have time. I heard it for first time and want to educate myself as learning experience. – kobe Dec 16 '10 at 6:32
@Timo: I haven't used javascriptmvc for myself, so I won't dare suggesting one over the other, I was more helping in giving out information in the direction you are moving (more alternatives). – Mahesh Velaga Dec 16 '10 at 6:35
@Timo did you see the files i gave as reference – kobe Dec 16 '10 at 6:36
@gov: I haven't used javascriptmvc, but Backbone.js gives the same MVC pattern for javascript, for more details please go through the link that I mentioned in my answer. Thanks. – Mahesh Velaga Dec 16 '10 at 6:37
show 4 more comments
feedback

I'm extremely biased, but answered: http://jupiterjs.com/news/having-your-cake-and-eating-it-without-getting-fat

link|improve this answer
It does have some cons I think, would I be right in saying that there is no encapsulation provided when making say controllers and models (or possibly, at all, on anything), this is widely known bad practice. Also a reliance (obsession) with extending jQuery even if you could easily provide namespaced but otherwise stand alone JavaScript object. – davidbuttar Jul 7 '11 at 23:07
@davidbuttar -- we have extensive encapsulation in our controllers and models via closures. JMVC does not prevent that (and it also doesn't force it for those who prefer otherwise). – Charlie Flowers Aug 9 '11 at 19:14
feedback

I'm sure you've already read this, but in the interest of letting everyone see:

http://javascriptmvc.com/#&who=why

As far as I can tell, there are very few cons over writing standard JavaScript. I haven't played with the framework much, but I've always though it would be fantastic to be able to call up views in JS (presumably through a server call) and access data in models (again, presumably through a server call). I've been meaning to try JSMVC because in CodeIgniter in PHP, thin controllers make my life much, much easier.

link|improve this answer
feedback

We have been using JavascriptMVC for a while now on two projects, and we're satisfied with it. Before we were using Sencha's ExtJS but found if too heavy and complex (although it does provide many excellent UI widgets out of the box).

JavascriptMVC is very lightweight, it's jQuery based, and it gives you a way to structure and organize your app, the rest is up to you. We're using a bunch of other well-known jQuery plugins, and they all go together with JMVC just fine. In particular, I like the fact JMVC doesn't get in your way if you know what I mean (think of JSF or some other heavy weight frameworks).

I would recommend a pure client-side framework for apps that are well decoupled, i.e. if you have a cleanly separated REST API service on server side, then it becomes really easy to integrate things with client-side presentation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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