Do Any Client-Side JavaScript Frameworks Integrate Well With Node.js+Express.js+socket.io.js?

Posted by Tom D on Stack Overflow See other posts from Stack Overflow or by Tom D
Published on 2012-12-10T23:02:28Z Indexed on 2012/12/10 23:03 UTC
Read the original article Hit count: 263

I'm building an webapp using Node.js+Express.js+socket.io.js on the backend.

Do any of the popular front-end frameworks (Agility, Angular, Backbone, Closure, Dojo, Ember, GWT, jQuery, Knockback, Knockout, Spine, YUI, etc) integrate well with this backend for "real-time" applications?

I want my application to have a very "real-time" feel. Specifically, when a user submits a form I want the information to be sent using web sockets to the backend for validation and (if validation passes) to be updated in the database. Then, the server-side will use web sockets to send a confirmation that the data was saved or some list of errors. I will use the server's response to update the page using JavaScript.

I know all this can be done with any of the listed frameworks. I'm interested in features of particular frameworks that will help the framework integrate better with the Node-based backend than the other frameworks.

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about node.js