Skip to content

Instantly share code, notes, and snippets.

@flybayer
Created September 4, 2016 20:12
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 flybayer/f2bc381c4772ef5df8b44ca50c0dcd0f to your computer and use it in GitHub Desktop.
Save flybayer/f2bc381c4772ef5df8b44ca50c0dcd0f to your computer and use it in GitHub Desktop.
Create downloadable text file from JavaScript
const convertStringToFile = (aString) => {
const data = new Blob([aString], {type: 'text/plain'})
return window.URL.createObjectURL(data)
}
<a
download="filename.txt"
href={convertStringToFile}
>
Download
</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment