https://github.com/maxbeier/argus
get notified when a website changes
https://github.com/maxbeier/argus
Last synced: 3 months ago
JSON representation
get notified when a website changes
- Host: GitHub
- URL: https://github.com/maxbeier/argus
- Owner: maxbeier
- License: mit
- Created: 2017-08-17T14:16:22.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-17T15:06:55.000Z (almost 9 years ago)
- Last Synced: 2025-10-14T22:29:01.752Z (8 months ago)
- Language: HTML
- Size: 156 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Argus
Monitors websites and notifys users once they change.

## Setup
```
git clone https://github.com/maxbeier/Argus
cd Argus
npm install
cp env.example .env
vim .env # change settings
node index.js
# with pm2
pm2 start index.js --name "argus"
pm2 start scraper.js --name "argus cron" --cron "*/10 * * * *" # run every 10 minutes
```
## Development
```sh
nodemon --inspect index.js --ignore db.json
```