Skip to content

Instantly share code, notes, and snippets.

@bmeck
Created November 7, 2018 15:45
Show Gist options
  • Save bmeck/e078cac0fd252bd0a7ff0d7a6355a9b0 to your computer and use it in GitHub Desktop.
Save bmeck/e078cac0fd252bd0a7ff0d7a6355a9b0 to your computer and use it in GitHub Desktop.
'use strict';
require('http').createServer(
(req, res) => {
require('fs').createReadStream('/dev/random').pipe(res);
}
).listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment