Reputation: 4747
I'm building a web-based drawing program. Since it's a lot of DOM manipulation, I decided to skip AngularJS and instead go for JQuery. I'm using RequireJS to structure it somewhat.
Now, the core drawing functionality and I want to continue building the UI around it: login/signup functionality, project file browsing, UI components for palettes, toolbars, etc.
What would you recommend for frameworks for this? BackboneJS? Marionette? Or use AngularJS for everything else that's not DOM manipulation?
Upvotes: 0
Views: 112
Reputation: 2492
I successfully used JSViews on my project together with RequireJS and jQuery.
They play well together, and I personnally love the minimalist approach of JSRender/JSViews: take what you want, and go as far as you need.
Upvotes: 1
Reputation: 1138
There is no right answer here, you'll probably get different advice from every person you ask. Having built several complex apps using both RequireJS/BackboneJS, and RequireJS/AngularJS, here's my 2 cents:
Upvotes: 1