Skip to content

Instantly share code, notes, and snippets.

@mariyadiminsky
Created July 20, 2016 05:46
Show Gist options
  • Save mariyadiminsky/2af54b37236d260cb282e768f19d148a to your computer and use it in GitHub Desktop.
Save mariyadiminsky/2af54b37236d260cb282e768f19d148a to your computer and use it in GitHub Desktop.
var http = require('http');
// STEP #2.1 Let's print the request url method
//from the request object. Uncomment below:
var bunnyServer = http.createServer();
bunnyServer.on('request', function(req, res) {
// printing the request url!
console.log(req.url);
// printing the request method!
console.log(req.method);
res.writeHead(200);
res.end('<html><body><h1>Bunny Server is live!</h1><img src="https://cdn.meme.am/instances/400x/55347780.jpg"></body></html>')
}).listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment