Skip to content

Instantly share code, notes, and snippets.

@MasseGuillaume
Created April 1, 2016 01:09
Show Gist options
  • Save MasseGuillaume/a4fa8199aa3a896d7262530868c6b874 to your computer and use it in GitHub Desktop.
Save MasseGuillaume/a4fa8199aa3a896d7262530868c6b874 to your computer and use it in GitHub Desktop.
var http = require('http');
var server = http.createServer(function (i, out){
out.writeHead(200, {'Content-Type': 'application/json'});
out.end(JSON.stringify({'name': 'out'}));
})
server.listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment