Skip to content

Instantly share code, notes, and snippets.

@mariyadiminsky
Last active July 20, 2016 05:49
Show Gist options
  • Save mariyadiminsky/27f2e753422cf43de88aeec284550425 to your computer and use it in GitHub Desktop.
Save mariyadiminsky/27f2e753422cf43de88aeec284550425 to your computer and use it in GitHub Desktop.
var http = require('http');
// STEP #1.5 Basic Server Continued...
var bunnyServer = http.createServer();
bunnyServer.on('request', function(req, res) {
res.writeHead(200);
res.end('<html><body><h1>Bunny Server is live!<br /><img src="https://cdn.meme.am/instances/400x/55347780.jpg"></h1></body></html>');
}).listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment