JSFiddle - React, Tailwind, and code Playground
by jfriend00
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.24.0/axios.min.js">
</script>
JavaScript
axios({
method: 'GET',
url: 'http://localhost',
auth: {
username: 'foo',
password: 'bar',
},
}).then(console.log).catch(err => {
console.log("My Error", err);
});