Skip to content

Instantly share code, notes, and snippets.

@remorses
Created February 26, 2020 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save remorses/5fe4f6c4e3cf5f499f38ec0d00c103f1 to your computer and use it in GitHub Desktop.
Save remorses/5fe4f6c4e3cf5f499f38ec0d00c103f1 to your computer and use it in GitHub Desktop.
Download a file with node-fetch
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