Created
December 5, 2022 19:55
-
-
Save ciatph/4613e7c76f86acfb62d5ee3a9d694b69 to your computer and use it in GitHub Desktop.
download file to buffer in nodejs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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