Skip to content

Instantly share code, notes, and snippets.

@pushmon
Created November 12, 2019 14:21
Embed
What would you like to do?
Node Axios
// requires axios, install using "npm install axios"
const axios = require('axios');
axios.get('http://pshmn.com/eaFnY')
.then(response => {
console.log(response.data);
}).catch(error => {
console.log(error);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment