Skip to content

Instantly share code, notes, and snippets.

@ciatph
Created December 5, 2022 19:55
Show Gist options
  • Save ciatph/4613e7c76f86acfb62d5ee3a9d694b69 to your computer and use it in GitHub Desktop.
Save ciatph/4613e7c76f86acfb62d5ee3a9d694b69 to your computer and use it in GitHub Desktop.
download file to buffer in nodejs
const response = await axios.get(url, { responseType: 'arraybuffer' })
const buffer = Buffer.from(response.data, 'utf-8')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment