Are there any websocket plugins for nodejs

Are there any websocket plugins for nodejs; I would like to develop some kind of application using websockets.

+5
source share
3 answers

Checkout Socket.IO is a widely used and powerful Node module for connecting connectors.

+7
source

WebSocket-Node is a clean implementation of WebSocket in node.js, which supports the latest version of the WebSocket specification (version 8), and is still actively supported.

Socket.io , , Flash Sockets, iframe ..

+2

As mentioned by cmpolis, Socket.IO is excellent. Just updated to 0.8.

nowjs also provides a higher level api if you like more abstraction.

Like nowjs, dnode allows you to call remote functions between client and server and vice versa.

Here is a great SO answer defining the differences between them.

+1
source

All Articles