Skip to content

Instantly share code, notes, and snippets.

@heapwolf
Created August 6, 2012 17:07
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save heapwolf/3276669 to your computer and use it in GitHub Desktop.
streams/simplified
var fs = require('fs'),
    http = require('http'),
    request = require('request');
http.createServer(function (req, res) {
  fs.createReadStream('logo.png').pipe(res);
}).listen(3002);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment