var getUserRepos = function (user) {
var apiUrl = 'https://api.github.com/users/' + user + '/repos';
fetch(apiUrl)
.then(function (response) {
if (response.ok) {
console.log(response);
response.json().then(function (data) {
console.log(data);
//calls display repos function
displayRepos(data, user);
});
} else {
alert('Error: ' + response.statusText);
}
})
.catch(function (error) {
alert('Unable to connect to GitHub');
});
};
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter