Beer app is a web app that designed to consume brewerydb APIs to list beers from around the world.
- Search, Sort and Filter beers
- Search by category
- Supports both list view and grid view
- Pagination of beers
Beer app uses a number of open source projects to work properly:
- Angular - HTML enhanced for web apps!
- Twitter Bootstrap - great UI boilerplate for modern web apps
- Primeng - A collection of rich UI components for Angular
- Ng4-loading-spinner - custom async loading spinner
- CORS Anywhere - This API enables cross-origin requests to anywhere.
Beer app requires:
- Node.js v10.0.0
- Angular CLI v1.7.4
- npm v6.0.1
Install the dependencies and devDependencies and start the server.
$ cd beer-app
$ npm install
$ npm start
For code coverage report
$ ng test --single-run --code-coverage
Varun Thakur