Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); //Return the url part of the request object: res.write(req.url); res.end(); }).listen(8080);
http://localhost:8080/summer