bws

0.1.6 • Public • Published

bws

Wrap websockets to make them look like node.js tcp sockets.

Usage

const net = require('bws');
 
const server = net.createServer();
server.on('connection', (socket) => {
  socket.setEncoding('utf8');
  socket.on('data', (data) => {
    console.log(data);
  });
});
server.listen(8080);
 
const socket = net.connect(8080, '127.0.0.1');
socket.on('connect', () => {
  socket.write('hello', 'utf8');
});

Contribution and License Agreement

If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work. </legalese>

License

  • Copyright (c) 2017, Christopher Jeffrey (MIT License).

See LICENSE for more info.

/bws/

    Package Sidebar

    Install

    npm i bws

    Weekly Downloads

    7

    Version

    0.1.6

    License

    MIT

    Unpacked Size

    15.6 kB

    Total Files

    8

    Last publish

    Collaborators

    • chjj
    • nodweber
    • pinheadmz