Reputation: 36243
I'm looking for fresh ways of programming in javascript. My goal is to create javascript application like GMail. I tried GWT but it seams so complicated and the code isn't stylish.
I found MVC patteren to be a good way of programming. I always have problems organizing the code in javascript. When I use CakePHP or RoR, everything is simpel :).
I'm looking for a javascript framework that would support MVC way of programming and would have good widgets like Adobe Spry Framework. What frameworks should I use? Thx!
Upvotes: 2
Views: 1270
Reputation: 23051
Check out AngularJS - http://angularjs.org
It will help you a lot with your app structure and strict separation between logic and view.
Full test environment (unit/e2e) and dependency injection included...
Upvotes: 2
Reputation: 6173
You might want to take a look at Cappuccino: http://cappuccino.org
Upvotes: 2
Reputation: 8124
A List Apart has an article about JavaScript MVC. I don't think you should necessarily use a framework, unless you're already familiar with one.
That article also points out to some MVC frameworks:
Upvotes: 3