Skip to content

Instantly share code, notes, and snippets.

@dohooo
Created December 28, 2022 06:40
Show Gist options
  • Save dohooo/77fa765c089cbb7a98271925a9d24cd4 to your computer and use it in GitHub Desktop.
Save dohooo/77fa765c089cbb7a98271925a9d24cd4 to your computer and use it in GitHub Desktop.
Using `download` library download the tarball file.
download(TAR_URL, FILE_NAME, {
headers: {
Authorization: `Basic ${Buffer.from(`${USERNAME}:${PAT}`).toString('base64')}`,
},
}).then((r) => {
console.log(r)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment