Skip to content

Instantly share code, notes, and snippets.

@H12
Created September 11, 2018 16:10
Show Gist options
  • Select an option

  • Save H12/a49e32ac6e462f7061e7d5fa3c2a3b25 to your computer and use it in GitHub Desktop.

Select an option

Save H12/a49e32ac6e462f7061e7d5fa3c2a3b25 to your computer and use it in GitHub Desktop.
Chrome Snippet for Importing Axios
fetch('https://unpkg.com/axios/dist/axios.min.js')
.then(response => response.text())
.then(text => eval(text))
.then(() => { console.log('axios has loaded') })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment