Skip to content

Instantly share code, notes, and snippets.

@0xv
Created October 25, 2017 15:14
Show Gist options
  • Save 0xv/cdcce411569e4908eb43af88ae9f0a0b to your computer and use it in GitHub Desktop.
Save 0xv/cdcce411569e4908eb43af88ae9f0a0b to your computer and use it in GitHub Desktop.
asdf
var url = "http://api.myjson.com/bins/tzcjb"
var axios = require('axios');
axios.get(url)
.then(response =>{
console.log(response)
})
.catch(e => {
this.errors.push(e)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment