WebSockets

This is a Websocket implementation on Espruino - it lets you:

Limitations:

To use the ws (About Modules) module, you must be connected to WiFi/Ethernet/etc - see here.

WebSocket Client

First you need run a websocket server which is explained here using Node.js.

Then you will be able to use the following and point it to your websocket server's host and port.

Note: all arguments after the host are optional.

var host = "192.168.0.10";
var WebSocket = require("ws");
    var ws = new WebSocket(host,{
      path: '/',
      port: 8080, // default is 80
      protocol : "echo-protocol", // websocket protocol name (default is none)
      protocolVersion: 13, // websocket protocol version, default is 13
      origin: 'Espruino',
      keepAlive: 60,
      headers:{ some:'header', 'ultimate-question':42 } // websocket headers to be used e.g. for auth (default is none)
    });

ws.on('open', function() {
  console.log("Connected to server");
});

ws.on('message', function(msg) {
  console.log("MSG: " + msg);
});

WebSocket Server

Just use require('ws').createServer like you would require('http').createServer and you can handle HTTP requests, then use .on('websocket', ...) to register a function to handle websockets.

The code below serves up a Web Page which starts a websocket connection, then

var page = '<html><body><script>var ws;setTimeout(function(){';
page += 'ws = new WebSocket("ws://" + location.host + "/my_websocket", "protocolOne");';
page += 'ws.onmessage = function (event) { console.log("MSG:"+event.data); };';
page += 'setTimeout(function() { ws.send("Hello to Espruino!"); }, 1000);';
page += '},1000);</script></body></html>';

function onPageRequest(req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.end(page);
}

var server = require('ws').createServer(onPageRequest);
server.listen(8000);
server.on("websocket", function(ws) {
    ws.on('message',function(msg) { print("[WS] "+JSON.stringify(msg)); });
    ws.send("Hello from Espruino!");
});

Available callbacks

ws.on('open', function() {
  // For WebSocket clients only
  console.log("Connected to server");
});

ws.on('message', function(msg) {
  console.log("MSG: " + msg);
});

ws.on('close', function() {
  console.log("Connection closed");
});

ws.on('handshake', function() {
  console.log("Handshake Success");
});

ws.on('ping', function() {
  console.log("Got a ping");
});

ws.on('pong', function() {
  console.log("Got a pong");
});

ws.on('rawData', function(msg) {
  console.log("RAW: " + msg);
});

Sending a Message

At any time during a session you can publish a message to the server.

  ws.send("hello world");

Node.js server

First you need to install the node.js ws module ( assuming you already have node.js and npm installed ):

npm install ws

Now you can run this server example that implements a simple chat room:

var WebSocketServer = require('ws').Server,
    wss = new WebSocketServer({
        port: 8080
    });

wss.on('connection', function connection(ws) {
    ws.room = [];
    ws.send("User Joined");

    ws.on('message', function(message) {
        message = JSON.parse(message);
        if (message.join) {
            ws.room.push(message.join);
        }
        if (message.room) {
            broadcast(message);
        }
        if (message.msg) {
            console.log("Server got: " + message.msg);
        }
    });

    ws.on('error', function(er) {
        console.log(er);
    })


    ws.on('close', function() {
        console.log('Connection closed')
    })
});

function broadcast(message) {
    wss.clients.forEach(function each(client) {
        if (client.room.indexOf(message.room) > -1 || message.room == 'all') {
            client.send(message.msg);
        }
    });
}

Then on Espruino, you can interact with the chat room using:

/** Join a room */
WebSocket.prototype.message = function (msg) {
    this.send(JSON.stringify({ msg : msg }));
};

/** Broadcast message to room */
WebSocket.prototype.broadcast = function (msg, room) {
    room = room === undefined ? 'all' : room;
    this.send(JSON.stringify({ room:room, msg:msg }));
};

/** Join a room */
WebSocket.prototype.join = function (room) {
    this.send(JSON.stringify({ join : room }));
};

Then to send a message use:

  ws.message("hello world");

To broadcast a message to all connected users:

  var message = "hello world";
  ws.broadcast(message);

To broadcast a message to specific room:

  var message = "hello world";
  var room = "Espruino";
  ws.broadcast(message, room);

Or to join a room:

  var room = "Espruino";
  ws.join(room);

Using

This page is auto-generated from GitHub. If you see any mistakes or have suggestions, please let us know.