Skip to content

Instantly share code, notes, and snippets.

@waghcwb
Created April 18, 2019 18:58
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 waghcwb/99bb2b18b064a2fe355e6339b0a29ec2 to your computer and use it in GitHub Desktop.
Save waghcwb/99bb2b18b064a2fe355e6339b0a29ec2 to your computer and use it in GitHub Desktop.
const link = document.getElementById('link')
const data = { username: 'waghcwb' }
const json = JSON.stringify(data, null, 2)
const blob = new Blob([json], { type: 'octet/stream' })
const url = window.URL.createObjectURL(blob)
link.href = url
link.download = 'username.json'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment