Created
May 15, 2018 16:49
-
-
Save ajb413/d4156a94bfe1be1b0cdfd73420342809 to your computer and use it in GitHub Desktop.
ChatEngine Message Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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