iobroker.ws.server

1.0.1 • Public • Published

ioBroker.ws.server

This library is used for communication with front-end via pure web-sockets.

It simulates socket.io interface.

It is used normally together with @iobroker/ws on browser side, and it is not compatible with socket.io.client library

Usage

const http = require('http');
const socket = require('./ws');

const requestListener = function (req, res) {
  res.writeHead(200);
  res.end('Hello, World!');
};

// create web server
const webServer    = http.createServer(requestListener);
// create web socket server
const socketServer = socket.listen(webServer, {pingInterval: 120000, pingTimeout: 30000});

// install event handlers on socket connection
function onConnection(socket, initDone) {
    console.log('==> Connected IP: ' + socket.connection.remoteAddress);
    
    socket.on('message', function (data, cb) {
        console.log('Received ' + data);
        cb(data + 1);
    });
    
    socket.on('disconnect', function (error) {
        console.log(`<== Disconnect from ${socket.connection.remoteAddress}: ${error}`);
    });
    
    initDone && initDone();
}

// install event handlers of the socket server
socketServer.on('connection', onConnection);
socketServer.on('error', (e, details) => console.error(`Server error: ${e}${details ? ' - ' + details : ''}`));

// start web server
webServer.listen(5000);

Changelog

1.0.1 (2022-01-30)

  • (bluefox) initial commit

License

The MIT License (MIT)

Copyright (c) 2020-2022 Bluefox dogafox@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i iobroker.ws.server

Weekly Downloads

21

Version

1.0.1

License

MIT

Unpacked Size

17.6 kB

Total Files

4

Last publish

Collaborators

  • bluefox