socket.io.wait

1.0.1 • Public • Published

socket.io.wait

Adds a promise to emit in socket.io

// Lets you emit and get a response rather than make a second
// callback to listen for the result
let result = await socket.emitWait("get_data", 123, 456);
 
for(let row of result.rows)
{
  console.log("The name is " + row.name + " and value is " + row.value);
}
 
 
 
// old way
 
socket.on("get_data_result", function(result) 
{
  for(let row of result.rows)
  {
    console.log("The name is " + row.name + " and value is " + row.value);
  }
});
 
socket.emit("get_data", 123, 456);

Readme

Keywords

none

Package Sidebar

Install

npm i socket.io.wait

Weekly Downloads

0

Version

1.0.1

License

ISC

Unpacked Size

5.28 kB

Total Files

5

Last publish

Collaborators

  • killerpokegames