I’m looking for a simple Javascript framework for my Chrome extension development.
I’m using jQuery and jQuery UI, but as my project grows, my orientation in the code is worse. So I need some kind of consistent MV* framework that is really simple&lightweight, popular (because of help and tutorials) and that could be used with jQuery and jQuery UI (or the framework could contain anything similar). Any ideas? Don’t suggest me TodoMVC – I tried it and every implementation except jQuery is unnecessarily complex.
I’m looking for a simple Javascript framework for my Chrome extension development. I’m using
Share
For structuring your javascript application, I suggest using Backbonejs. It’s lightweight, and it even uses jQuery, so you should feel quite at home. Assuming you need richer widget than what is built into the browser, instead of using jQueryUI you may want to look into “Twitter Bootstrap”, which is quite pleasant to work with, looks great and already supports responsive applications (which may or may not be necessary for your Chrome Extensions). I also believe it is a lot more lightweight than jQueryUI, but I really haven’t looked into that in detail on my own. The same combo also works great for traditional web pages, web apps, single page applications and even works quite well on mobile devices.