Skip to content

Instantly share code, notes, and snippets.

@ciberado
Last active August 29, 2015 14:19
Show Gist options
  • Save ciberado/da6870624c9966327d5c to your computer and use it in GitHub Desktop.
Save ciberado/da6870624c9966327d5c to your computer and use it in GitHub Desktop.
RiverSongWebservice
var http = require('http');
var server = http.createServer(function (request, response) {
console.log('Knock knock.');
response.writeHead(200, {"Content-Type": "application/json"});
var data = { 'message' : 'Hello Sweetie' };
response.end(JSON.stringify(data) + '\n');
});
server.listen(8888);
console.log('I hate you.');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment