Skip to content

Instantly share code, notes, and snippets.

@acceptable-security
Created May 14, 2014 19:34
Show Gist options
  • Save acceptable-security/54d6fde45a1f25c49c34 to your computer and use it in GitHub Desktop.
Save acceptable-security/54d6fde45a1f25c49c34 to your computer and use it in GitHub Desktop.
var server = createServer("test.com", 8123);
server.on('connection', function (client) {
console.log("WOW CONN");
});
server.on('end', function (client) {
console.log("MUCH DISCONN");
});
server.on('message', function (mail) {
console.log(mail);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment