Skip to content

Instantly share code, notes, and snippets.

@ajb413
Created May 15, 2018 16:49
Show Gist options
  • Select an option

  • Save ajb413/d4156a94bfe1be1b0cdfd73420342809 to your computer and use it in GitHub Desktop.

Select an option

Save ajb413/d4156a94bfe1be1b0cdfd73420342809 to your computer and use it in GitHub Desktop.
ChatEngine Message Example
chat.emit('message', {
text: "This is the chatbot speaking :]",
});
// Separate into 2 snippets
chat.on('message', (payload) => {
chatLog.append(payload.text);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment