This is the repository for East Point Systems Angular coding challenge.
- First fork this repository to your github account and clone it locally.
- Create a new feature branch for your work.
- Install Node.js if it's not already installed (any version > 6 should work).
- Run
npm installto retrieve dependencies. - To start the project run
npm start.
The goal of this challenge is to build an application that can search for and display github repositories. Github's API documentation is hosted here.
The application needs to do three things:
- Allow a user to enter a search term.
- Display github repositories matching that term.
- Allow a user to view the details of the repository (Name, Description, Url, last five commits, etc)
Feel free to modify any of the existing code or add any additional libraries in order to complete the challenge.
When you're finished submit a pull request to the East Point fork for review.
- Tests can be run with
npm testornpm e2efor the end to end tests. - This repository is built using Angular CLI. To get more help on the Angular CLI use
ng helpor go check out the Angular CLI README.