Skip to content

Instantly share code, notes, and snippets.

@adamancini
Created June 29, 2012 13:55
Show Gist options
  • Save adamancini/3018088 to your computer and use it in GitHub Desktop.
Save adamancini/3018088 to your computer and use it in GitHub Desktop.
var server = net.createServer(function(stream) { // automatically binds to connection event
stream.on('data', function(data) {
map = JSON.parse(data.toString());
console.log(map);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment