Are there any websocket plugins for nodejs; I would like to develop some application that uses websockets.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Checkout Socket.IO - it's a widely used and powerful Node module for socket connections. |
|||||
|
|
WebSocket-Node is a pure WebSocket implementation in node.js that supports the latest version of the WebSocket spec (version 8), and is still being actively maintained. Otherwise Socket.io has broader browser support because it can fall back to things such as Flash Sockets, long lived iframes etc. |
|||
|
|
|
Like cmpolis mentioned, Socket.IO is excellent. Just upgraded to 0.8 too. nowjs also provides a higher-level api if you like more abstraction. Similar to nowjs, dnode allows you to call remote functions between the client and server and vice versa. Here is a great SO answer delineating the differences between them. |
||||
|
|