Skip to content

Instantly share code, notes, and snippets.

@Lifeni
Last active April 5, 2023 12:04
Show Gist options
  • Save Lifeni/2a36b8897b2f8753e36a7ccc5c76c45f to your computer and use it in GitHub Desktop.
Save Lifeni/2a36b8897b2f8753e36a7ccc5c76c45f to your computer and use it in GitHub Desktop.
Fetch my GitHub profile.
const name = `Lifeni`;
fetch(`https://api.github.com/users/${name}`)
.then((res) => res.json())
.then((user) => console.log(user))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment