Reputation: 1422
Today's Web is not a simple page - it's fully-featured interface.
A lot of solutions still "stuck" in old-way interface generation and manipulation - when you first build it with html and then manipulating elements.
What is the best solution if i want to develop "thick" client with minimum amout of pure html code? So all interface will be dynamic, generated and manipulated as objects with methods/events.
I've read about AngularJS and ExtJS, but it still seems not a "perfect" solution to me. Maybe i'm wrong.
Upvotes: 3
Views: 103
Reputation: 300
It seems like what you're describing is similar to what React.js / Flux are trying to accomplish. Perhaps add them to your list of frameworks to evaluate.
https://facebook.github.io/react/index.html
https://facebook.github.io/flux/docs/overview.html
Upvotes: 2