Shujaatali
Shujaatali

Reputation: 131

Jquery or Javascript mvc

i build hr, accounts and other management system with laravel at backend. Ajax is used in many pages for pagination, crud operations and for other purposes but website is not completely based on ajax. does backbone or other javascript mvc is suitable to manage front-end or jquery alone can handle this

i want to explorer backbone and other front-end frameworks but wonders that it increase complexity at frontend

Upvotes: 1

Views: 142

Answers (2)

Nomad101
Nomad101

Reputation: 1698

well backbone.js is exactly what you want some other popular options include angularjs as well as knockout.js. Each has its place and they all do slightly different things. If you are focusing CRUD type operations AnuglarJS is a very good choice. knockout.js helps make very rich user experiences easily and maintain-ably. Backbone.js is more of a cleaner jQuery in my opinion with some easier to understand syntax.

I would take a look at doing a simple example in each and then pick one from that. the choice is highly dependent on style and personal preference.

Upvotes: 0

Aman Chhabra
Aman Chhabra

Reputation: 3894

Generally backbone is used for highly ajaxified websites. So if you are not using ajax to that limit, according to me jQuery itself is capable to handle it.

Upvotes: 2

Related Questions