Skip to content

Instantly share code, notes, and snippets.

@Shadid12
Created June 30, 2019 19:36
Show Gist options
  • Save Shadid12/6767cbe6388f4598b40ee0832a689536 to your computer and use it in GitHub Desktop.
Save Shadid12/6767cbe6388f4598b40ee0832a689536 to your computer and use it in GitHub Desktop.
// chat-server.ts
socket.on('make-answer', function (data) {
socket.to(data.to).emit('answer-made', {
socket: socket.id,
answer: data.answer
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment