sockjs-client-ws

0.1.0 • Public • Published

SockJS Client Node

Node client for SockJS. Currently, only the WebSocket transport is supported.

Usage

var sjsc = require('sockjs-client-ws');
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!");

Readme

Keywords

none

Package Sidebar

Install

npm i sockjs-client-ws

Weekly Downloads

5

Version

0.1.0

License

none

Last publish

Collaborators

  • steerapi