Skip to content

Instantly share code, notes, and snippets.

@istudyatuni
Created January 26, 2022 17:06
Show Gist options
  • Save istudyatuni/f7d70e4dc8880c37df60d4a031e87e5e to your computer and use it in GitHub Desktop.
Save istudyatuni/f7d70e4dc8880c37df60d4a031e87e5e to your computer and use it in GitHub Desktop.
Download blob as file
const response = await fetch('/url')
const blob = await response.blob()
const a = document.createElement('a')
a.setAttribute('download', 'your-file.extension')
a.href = URL.createObjectURL(blob)
a.click()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment