This coding exercise is part of the application process for Code42's Software Development Internship.
Create an html page that displays all members of the Code42 github organization and a list of their repos, using the github API. See the attached image for an example. Keep in mind: this does not need to look pretty.
- API url for all members: https://api.github.com/orgs/code42/public_members
- Use any javascript library or framework you wish for fetching data and displaying
- If you're unsure what to use for fetching data, you can use try the new javascript fetch function (only available in Chrome and Firefox)
- At minimum, you should display the following information:
- Their Github username (login)
- Their Github image (avatar_url)
- A list of their repo names (example API url for 1 member's repos: https://api.github.com/users/chmontgomery/repos)
- Create an account on github and create a private repo
- Share private repo with chmontgomery
