Skip to content

Instantly share code, notes, and snippets.

@max8hine
Last active February 4, 2022 23:07
Show Gist options
  • Save max8hine/e07e5fe81a4ae6dc9d496e97f8e76a5b to your computer and use it in GitHub Desktop.
Save max8hine/e07e5fe81a4ae6dc9d496e97f8e76a5b to your computer and use it in GitHub Desktop.
File Download with Javascript
const downloadFile = (data: string, name: string) => {
const blob = new Blob([data], { type: 'octet-stream' });
const href = URL.createObjectURL(blob);
const a = Object.assign(document.createElement("a"); { href, download: name, style: "display: none"})
a.click();
URL.revokeObjectURL(href);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment