New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

lark-websocket

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lark-websocket

A light-weight websocket framework based on Node.js. Provides an easy way to build services with raw WebSocket protocol

latest
npmnpm
Version
0.0.5
Version published
Weekly downloads
8
Maintainers
1
Weekly downloads
 
Created
Source

lark-websocket

Websocket webserver framework in nodejs. Under development, unstable

Install

npm install lark-websocket

Get started

The following example creates a new websocket server, and send a message back when received one

var ws = require('lark-websocket');
ws.createServer(function(client, request){
    client.on('message',function(msg){
        client.send("Received you message : " + msg);
    });
}).listen(8023);

Attach

Attach websocket server to an HTTP server

require('lark-websocket');
var http = require('http');
http.createServer(function(req,res){...})
    .acceptWebsocket(function(client, request){...})
    .listen(8023);

Note that requiring websocket will extend require('net').Server with acceptWebsocket. I'm still considering, maybe will remove this later

Extend

You can extend/modify lark-websocket directly, or use the following syntactic sugar:

var websocket = require('lark-websocket');
websocket.extend(function(ws){
    ws.sayHello = function(){...};
});

By default lark-websocket has been extended with application, router and group

Client

Inherits events.EventEmitter, encapsulated socket.

  • new Client(socket) to create a new client
  • client.send send a message, emit send
  • client.receive to receive frames. Usage client.receive(callback), callback is called when a frame received, emit receive
  • client.message to receive message. Usage client.receive(callback), callback is called when a text frame received, emit message
  • client.ping to ping. Unfortunately, no events for this action
  • client.close to close, emit close
  • Event error, emit when socket event error emitted

FAQs

Package last updated on 03 Jun 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts