myGithub

A webapp to consume Github Api

Setup:

Requirements:

  • Create a Class and methods
  • Use Bootstrap (optional but strongly suggested)

Features:

  • When you load the app it shows a user and his/her repos
  • You can search for other users
  • Feel free to implement other features (filtering, sorting, etc)

Bonus:

fetch(apiUrl)
.then(
	response => response.json()
)
.then(
	repos => repos.forEach( 
		repo => console.log(repo)
	)
)
.catch(
	err => console.log(`panic: ${err}`)
)