Skip to content

Instantly share code, notes, and snippets.

@bhuizi
bhuizi / axios_get_pipe_zip.js
Last active October 27, 2021 14:09
axios get request w/ piping
const axios = require('axios');
const fs = require('fs');
const url = <path_to_file>
axios({
method: 'get',
url: url,
responseType:'stream'
})
.then(res => {
res.data.pipe(fs.createWriteStream('new.zip'));
@johnchambers
johnchambers / cookie.js
Created December 16, 2014 15:08
Bootstrap 3 - Footer Cookie Alert/Banner