Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ablomer/rsswatcher
📰 A web application for monitoring RSS feeds and receiving real-time notifications when new posts match your keywords.
https://github.com/ablomer/rsswatcher
docker express feed-monitor feed-parser mantine monitoring nodejs notifications ntfy react rss rss-feed rss-reader typescript vite webapp
Last synced: about 4 hours ago
JSON representation
📰 A web application for monitoring RSS feeds and receiving real-time notifications when new posts match your keywords.
- Host: GitHub
- URL: https://github.com/ablomer/rsswatcher
- Owner: ablomer
- License: mit
- Created: 2025-01-16T00:41:07.000Z (3 days ago)
- Default Branch: main
- Last Pushed: 2025-01-19T01:39:02.000Z (about 7 hours ago)
- Last Synced: 2025-01-19T02:26:54.858Z (about 7 hours ago)
- Topics: docker, express, feed-monitor, feed-parser, mantine, monitoring, nodejs, notifications, ntfy, react, rss, rss-feed, rss-reader, typescript, vite, webapp
- Language: TypeScript
- Homepage:
- Size: 128 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RSS Watcher
A modern web application for monitoring RSS feeds and receiving notifications when new posts match your keywords. Built with React, Express, and TypeScript.
## Features
- 🔍 Monitor multiple RSS feeds simultaneously
- 🔑 Define custom keywords for each feed
- 🔔 Real-time notifications via [ntfy.sh](https://ntfy.sh)
- ⏰ Configurable check intervals
- 📱 Responsive web interface## Getting Started
### Prerequisites
- Node.js (v14 or higher)
- npm or yarn### Installation
1. Clone the repository:
```bash
git clone https://github.com/ablomer/rsswatcher.git
cd rsswatcher
```2. Install dependencies:
```bash
npm install
# or
yarn install
```### Development
Run the development server:
```bash
npm run dev
# or
yarn dev
```### Production
Build and start the production server:
```bash
npm run build
npm start
# or
yarn build
yarn start
```Once the server is running, visit `http://localhost:3000` in your browser to access the web interface.
## Configuration
All configuration is managed through the web interface:
### Feed Management
- Add, edit, or remove RSS feeds through the "Feeds" tab
- Set keywords for each feed to monitor
- View feed status and history### Settings
- Configure ntfy.sh notification settings in the "Settings" tab
- Set your ntfy topic
- Configure ntfy server address (defaults to https://ntfy.sh)
- Adjust feed check interval## Docker Support
Build the Docker image:
```bash
docker build -t rsswatcher .
```Run the container:
```bash
# Create a directory for persistent data
mkdir -p data# Run the container with mounted data directory
docker run -p 3000:3000 \
-v $(pwd)/data:/app/data \
rsswatcher
```This will persist all application data (configuration and history) across container restarts.
## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
## License
This project is licensed under the MIT License (see the [LICENSE](LICENSE) file for details).