> Examples of the Server side could be something like the following: > [....]
This is all micromanaging the client from the server. It will work I wont deny that, but it comes with a few drawbacks. Bandwidth Load, Sending every single DOM setting and change from server to client causes more bandwidth, response time, anything you change needs a client<->server communcation, leaving the user a worse responseviness feeling, development encapsulasion, having client/server be more seperate things where the former cares about the updates is better in seperating the tasks for development. Its like doing an online game, and instead of the server sending the client proper changes of the virtual world for it to render properly, it would instead in analogy to setting each and every DOM paramter from server provide a 2D movie. If you need to keep at this strict server controlled design, just generate webpages all over, like in the old pre-ajax web, instead of making micro calls to the DOM. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
