RSS Aggregator is a project developed as part of the Frontend Developer course on the Hexlet platform. The project involves creating a web application that allows users to subscribe to and read various RSS feeds in one place.
- Add multiple RSS feeds.
- ???Automatic updates of the feeds and aggregation of new articles???
- User-friendly interface for reading articles from different sources.
To run this project, you need to have Node.js and npm installed on your machine.
- Clone the repository:
git clone [url_repo]- Install the dependencies:
make installTo build the project for development, run:
make devThe application will be available at http://localhost:8080(may be).
To check the code for stylistic and programming errors, run:
make lint To run the test suite, execute:
make testTo build the project for production, run:
make build