-
-
Save yrashk/746864 to your computer and use it in GitHub Desktop.
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
var msg = require('messaging'); | |
var mbox = new msg.Mailbox(); | |
var mbox2 = new msg.Mailbox(); | |
var namedmbox = new msg.Mailbox("myname"); | |
mbox2.on("info",function(msg) { console.log("mbox2: info: " + msg) }); | |
namedmbox.on("info",function(msg) { console.log("namedmbox: info: " + msg) }); | |
mbox.send(mbox2, "Hello, dude!"); | |
mbox.send("myname", "Hello, named dude!"); |
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
"mbox2: info: Hello, dude!" | |
"namedmbox: info: Hello, named dude!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment