user7044
user7044

Reputation: 309

Are there any websocket plugins for nodejs

Are there any websocket plugins for nodejs; I would like to develop some application that uses websockets.

Upvotes: 5

Views: 812

Answers (3)

Qcom
Qcom

Reputation: 19213

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.

Upvotes: 1

Sunday Ironfoot
Sunday Ironfoot

Reputation: 13050

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.

Upvotes: 2

cmpolis
cmpolis

Reputation: 3051

Checkout Socket.IO - it's a widely used and powerful Node module for socket connections.

Upvotes: 7

Related Questions