KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
sockjs-client-node
★ 37
Open GitHub ↗
SockJS client for Node
Download README (.md)
Explore Similar Repositories
ng2-STOMP-Over-WebSocket
:
STOMP Over WebSocket service for angular2
sockjs-unity3d-xhr
:
sockjs client implementation for unity3D using xhr polling (so this works with unity free license)
sockjs_reconnect
:
SockJS client-side reconnector
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
sockjs-client-node
?
Download (.md)
# **DEPRECATED** The [sockjs-client](https://github.com/sockjs/sockjs-client) project now supports running in node, and supports more transports than this project does. I strongly encourage you to use that instead. # SockJS Client Node Node client for [SockJS](https://github.com/sockjs). Currently, only the XHR Streaming transport is supported. ## Usage var sjsc = require('sockjs-client'); var client = sjsc.create("http://localhost/sjsServer"); client.on('connection', function () { // connection is established }); client.on('data', function (msg) { // received some data }); client.on('error', function (e) { // something went wrong }); client.write("Have some text you mighty SockJS server!");