An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Argus

Monitors websites and notifys users once they change.

![Screenshot](https://raw.githubusercontent.com/maxbeier/Argus/master/screenshot.png)

## 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
```