Created
May 26, 2018 22:03
-
-
Save dupski/0c29fb556cc359d9d85f4be83fb65707 to your computer and use it in GitHub Desktop.
ES2017 Async Function example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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