Skip to content

Instantly share code, notes, and snippets.

@bjartwolf
Created December 30, 2013 20:28
Show Gist options
  • Save bjartwolf/8187666 to your computer and use it in GitHub Desktop.
Save bjartwolf/8187666 to your computer and use it in GitHub Desktop.
var http = require('http');
var fs = require('fs');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'application/xml',
'Content-Encoding':'gzip'});
fs.createReadStream('medline13n0701.xml.gz').pipe(res);
}).listen(1337, '127.0.0.1');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment