Here is a pretty crumby skeleton of a Hacker News Clone react application. Let's make it better. Feel free to refactor as you go or write any additional tests.
- Render a card for each Hack News article returned from the API. Let's show at least the article's title and author.
- Search should be working! Enter a search term, and then hit the button to get the updated results from the API.
Once we have a list of articles, let's add content to them.
- 'More' button should expand to show the text content of the article.
- Comments should be shown for each articles with sub-comments for each.
How can we make the app more interesting? What sparks your interest?
- Error handling
- Refactor the code to make it cleaner
- Snazzy CSS Styling
- Additional API Functionality Hacker News API Docs
- Pagination
- Install dependencies
npm install
- Start the App
npm start
- Run the tests
npm test