Created
September 11, 2018 16:10
-
-
Save H12/a49e32ac6e462f7061e7d5fa3c2a3b25 to your computer and use it in GitHub Desktop.
Chrome Snippet for Importing Axios
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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