Organizing A jQuery Application with JavaScriptMVC
jupiterjs.com
Organizing A jQuery Application with JavaScriptMVC
1–4 of 4 posts
Re: Organizing A jQuery Application with JavaScriptMVC
#2This is something I have to constantly remind myself. When you have big application to create with tons of things to do you need to have sort of a double think kind of way of going about it. Focusing on the details of each part, all while keeping in mind how that part will fit into the whole at the end.
Re: Organizing A jQuery Application with JavaScriptMVC
#3The gem from the article: "The secret to building large apps is NEVER build large apps. Break up your applications into small pieces. Then, assemble those testable, bite-sized pieces into your big application." This is something I have to constantly remind myself. When you have big application to create with tons of things to do you need to have sort of a double think kind of way of going about it. Focusing on the de…
Re: Organizing A jQuery Application with JavaScriptMVC
#4The gem from the article: "The secret to building large apps is NEVER build large apps. Break up your applications into small pieces. Then, assemble those testable, bite-sized pieces into your big application." This is something I have to constantly remind myself. When you have big application to create with tons of things to do you need to have sort of a double think kind of way of going about it. Focusing on the de…
I did a test sometime ago and I found JavaScript MVC a bit heavy. I prefer break my JS application in small modules and do their communication via message passing (custom events), like this: http://blog.rebeccamurphey.com/code-org-take-2-structuring-j...
Further, if you read the article, that is exactly what is happening. It's producing custom search events.
Please re-evaluate JMVC, it's really a bunch of low-level libs that provide just a little more power to jQuery.