axios.get('http://localhost:8081/pets')
.then(response => {
this.pets = response.data;
})
axios.get('http://localhost:8081/pets')
.then(response => {
this.pets.push(response.data)
})
axios({
method:'get',
url:'http://bit.ly/2mTM3nY',
responseType:'stream'
})
.then(function (response) {
response.data.pipe(fs.createWriteStream('ada_lovelace.jpg'))
});