Like the axios example from: ``` // GET request fo...
# random
a
Like the axios example from:
Copy code
// GET request for remote image
axios({
  method:'get',
  url:'<http://bit.ly/2mTM3nY>',
  responseType:'stream'
})
  .then(function(response) {
  response.data.pipe(fs.createWriteStream('ada_lovelace.jpg'))
});