Skip to content

Instantly share code, notes, and snippets.

@patarkf
Last active June 12, 2017 14:28
Show Gist options
  • Save patarkf/bdfc63bdd3ec42ff696ab63547046b92 to your computer and use it in GitHub Desktop.
Save patarkf/bdfc63bdd3ec42ff696ab63547046b92 to your computer and use it in GitHub Desktop.
async function getFromGitHub() {
try {
const userName = 'patarkf';
const url = 'https://api.github.com/users';
const reposResponse = await fetch(`${url}/${userName}/repos`);
const userRepos = await reposResponse.json();
console.log(userRepos);
} catch (error) {
console.log(error);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment