Skip to content

Instantly share code, notes, and snippets.

@thongnv
Created February 17, 2019 14:13
Show Gist options
  • Save thongnv/07d8641c26da834c6f7a99066399efb9 to your computer and use it in GitHub Desktop.
Save thongnv/07d8641c26da834c6f7a99066399efb9 to your computer and use it in GitHub Desktop.
let http = require('http');
let fs = require('fs');
http.createServer(function (req, res) {
  fs.readFile('demo.html', function(err, data) {
    res.writeHead(200, {'Content-Type': 'text/html'});
    res.write(data);
    res.end();
  });
}).listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment