#!/usr/bin/env node require('http').createServer(function(request, response) { var body = ''; response.writeHead(200, { 'Content-Type': 'text/html', 'Content-Length': body.length }); response.end(body); }).listen(80);