Replica of HackerNews website using Angular 8 and Bootstrap 4 for the frontend part of a full-stack interview assignment.
Angular 8, Bootstrap 4, Frontend, Typescript , ForkJoin, Interview Assignment
git clone https://github.com/egeozbek/hackernews-ui-replica
npm install
ng serve
API Provided by HackerNews allows users to get ids of the most recent news. To speed up the loading times, (and to prevent sequential calls to the API for each entry) we use forkJoin method to paralellize the network requests. You can investigate ContentService for more detail.
Inspired by AndrewPoyntz, date ago pipe transforms the difference in post time in Unix-time to human readable text.