Skip to content

Instantly share code, notes, and snippets.

@tmcw
Created August 31, 2012 16:47
Show Gist options
  • Save tmcw/3555717 to your computer and use it in GitHub Desktop.
Save tmcw/3555717 to your computer and use it in GitHub Desktop.
var request = require('request'),
fs = require('fs');
var writeStream = fs.createWriteStream('bz2.bz2');
request({
url: 'http://planet.openstreetmap.org/changesets-120801.osm.bz2',
proxy: process.env.HTTP_PROXY
}, function() {}).pipe(writeStream);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment