Skip to content

Instantly share code, notes, and snippets.

@mafintosh
Created August 29, 2014 20:09
Show Gist options
  • Save mafintosh/0248b745e927c4102351 to your computer and use it in GitHub Desktop.
Save mafintosh/0248b745e927c4102351 to your computer and use it in GitHub Desktop.
var request = require('request')
var zlib = require('zlib')
var url = 'http://irsadist.ipac.caltech.edu/wise-allwise/wise-allwise-cat-part01.gz'
request(url)
.pipe(zlib.createGunzip())
.pipe(process.stdout)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment