Created
June 8, 2017 03:07
-
-
Save alanhoff/61c453a72576e4b9e63eaba84ac3a076 to your computer and use it in GitHub Desktop.
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
async function fazerAlgo() { | |
const resposta = await request('https://google.com.br') | |
await fs.writeFile('resposta.html', resposta) | |
const resposta2 = await request('https://facebook.com') | |
await fs.writeFile('resposta2.html', resposta2) | |
console.log('Todas as respostas foram salvas!') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment