Skip to content

Instantly share code, notes, and snippets.

@abhikhatri
Created November 17, 2019 14:42
Show Gist options
  • Save abhikhatri/c57e38445f80eab165dca0578ce2852e to your computer and use it in GitHub Desktop.
Save abhikhatri/c57e38445f80eab165dca0578ce2852e to your computer and use it in GitHub Desktop.
function to listen to all socket io events
var onevent = socket.onevent;
socket.onevent = function (packet) {
var args = packet.data || [];
onevent.call(this, packet);
console.log('packet', packet.data);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment