app.js 256 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 var http = require('http'); var fs = require('fs'); http.createServer(function (req, res) { fs.readFile('index.html', function(err, data) { res.writeHead(200, {'Content-Type': 'text/html'}); res.write(data); res.end(); }); }).listen(8080);