Skip to content

Instantly share code, notes, and snippets.

@hugomd
Last active May 23, 2018 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugomd/70465ad234a7c14dd29ea2ba3485f6f2 to your computer and use it in GitHub Desktop.
Save hugomd/70465ad234a7c14dd29ea2ba3485f6f2 to your computer and use it in GitHub Desktop.
...
console.log(`Joined ${room.name} successfully`);
+ const input = readline.createInterface({input: process.stdin});
+ input.on('line', async text => {
+ await currentUser.sendMessage({roomId: room.id, text});
+ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment