Created
February 26, 2020 15:21
-
-
Save remorses/5fe4f6c4e3cf5f499f38ec0d00c103f1 to your computer and use it in GitHub Desktop.
Download a file with node-fetch
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 buffer = await fetch(url).then((r) => r.buffer()) | |
const content = buffer.toString('utf8') | |
// then pass this where you like |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment