Skip to content

Instantly share code, notes, and snippets.

@dupski
Created May 26, 2018 22:03
Show Gist options
  • Save dupski/0c29fb556cc359d9d85f4be83fb65707 to your computer and use it in GitHub Desktop.
Save dupski/0c29fb556cc359d9d85f4be83fb65707 to your computer and use it in GitHub Desktop.
ES2017 Async Function example
import request from 'axios';
async function getUserQuote() {
const userResponse = await request({ url: 'https://randomuser.me/api/', responseType: 'json' });
console.log('Got User:', response.data);
const quoteResponse = await request({ url: 'http://quotes.rest/qod.json', responseType: 'json' });
console.log('Got Quote:', response.data);
}
getUserQuote()
.then(() => console.log('Profit!');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment