Skip to content

Instantly share code, notes, and snippets.

@ericviana
Created August 3, 2022 17:14
Show Gist options
  • Save ericviana/454b1882c7ff4df9515ac6e34816705f to your computer and use it in GitHub Desktop.
Save ericviana/454b1882c7ff4df9515ac6e34816705f to your computer and use it in GitHub Desktop.
import axios from "axios";
axios.get('https://api.github.com/users/ericviana')
.then (response => axios.get(response.data.repos_url))
.then (repos => console.log(repos.data))
.catch (error => console.log(error))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment