tags:

views:

505

answers:

3

Has anyone been able to implement the MVP model with any javascript frameworks? I'm having trouble figuring out how to have the presenter -> view inversion from server code to javascript. I have some ideas, but kind of hackish and would like to see what others are doing.

A: 

Check PureMVC out. They have also port to JavaScript.

Sergey Ilinsky
Although MVC is not useful for client-side applications. I would advice on using PAC pattern instead.
Sergey Ilinsky
read MVP, not MVC
Yanick Rochon
A: 

Another one: http://javascriptmvc.com/

Never used it myself, but maybe it will help you out.

bmoeskau