Skip to content

Instantly share code, notes, and snippets.

@FloStar3000
Created July 20, 2021 14:27
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 FloStar3000/880a1f214849a3846021428ba7631994 to your computer and use it in GitHub Desktop.
Save FloStar3000/880a1f214849a3846021428ba7631994 to your computer and use it in GitHub Desktop.
Download Text as File in Javascript
const element = document.createElement('a');
const file = new Blob([text], { type: 'text/plain' });
element.href = URL.createObjectURL(file);
element.download = `${filename}.txt`;
document.body.appendChild(element);
element.click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment