0.8.0 • Published 6 years ago

socket.io-request v0.8.0

Weekly downloads
475
License
MIT
Repository
github
Last release
6 years ago

socket.io-request

bidirectional request-response for socket.io

Circle CI

Feature

Of cource, Socket.IO's emit and on have request-response. This library adds some features.

  • Promise interface
  • Exception handling
    • timeout
    • disconnect

Install

% npm install socket.io-request -save

Methods

  • request("method", data) return Promise
  • response("method", handler)

Usage

request from Client to Server

client

var ioreq = require("socket.io-request");
var io = require("socket.io-client")("http://localhost:3000");

io.on("connect", function(){
  ioreq(io).request("toUpper", "hello world") // method, data
    .then(function(res){
      console.log(res); // get "HELLO WORLD"
    })
    .catch(function(err){
      console.error(err.stack || err);
    });
});

server

var ioreq = require("socket.io-request");
var io = require("socket.io")(3000);

io.on("connection", function(socket){ // new client
  ioreq(socket).response("toUpper", function(req, res){ // method, handler
    res(req.toUpperCase()); // return to client
  });
});

request from Server to Client

server

var ioreq = require("socket.io-request");
var io = require("socket.io")(3000);

io.on("connection", function(socket){ // new client
  ioreq(io).request("windowSize")
    .then(function(res){
      console.log(res); // get {height: 528, width: 924}
    });
});

client (web browser)

var ioreq = require("socket.io-request");
var io = require("socket.io-client")("http://localhost:3000");

io.on("connect", function(){
  ioreq(io).response("windowSize", function(req, res){
    res({
      height: window.innerHeight,
      width: window.innerWidth
    }); // return to server
  });
});

Error handling

res.error returns error object to requester.

ioreq(io).response("foo", function(req, res){
  if(typeof req !== "string") return res.error(new Error("request is not String"));
  res("foo!" + req);
});
ioreq(io).request("foo", 123)
  .then(function(res){
    console.log(res);
  })
  .catch(function(err){
    console.error(err); // =>  "[Error: request is not String]"
  });

Options

var options = {
  event: "socket.io-request", // event name on socket.io
  timeout: 90000              // request timeout (msec)
};

ioreq(io, options).request("foo");

Async-Await

Using async-await syntax, you can write like below.

async () => {
  const res = await ioreq(io).request("hello");
};

Samples

in ./sample directory.

Develop

% npm i
% npm run build
% npm test
0.8.0

6 years ago

0.7.0

7 years ago

0.6.0

7 years ago

0.5.3

7 years ago

0.5.2

7 years ago

0.5.1

7 years ago

0.5.0

7 years ago

0.4.0

7 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago