Skip to content

Instantly share code, notes, and snippets.

@mheap
Created September 11, 2013 16:29
Show Gist options
  • Save mheap/6526192 to your computer and use it in GitHub Desktop.
Save mheap/6526192 to your computer and use it in GitHub Desktop.
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('{"success":true}');
}).listen(9615);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment