Skip to content

Instantly share code, notes, and snippets.

@chaiwa-berian
Created August 20, 2018 17:27
Show Gist options
  • Save chaiwa-berian/aa07282e93bcddff42cad23099c0b8db to your computer and use it in GitHub Desktop.
Save chaiwa-berian/aa07282e93bcddff42cad23099c0b8db to your computer and use it in GitHub Desktop.
const http = require('http');
const fs = require('fs');
var server = http.createServer((req, res)=>{
var stream = fs.createReadStream(__dirname + '/data.txt');
stream.pipe(res);
});
server.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment