Monitors websites and notifys users once they change.
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
nodemon --inspect index.js --ignore db.json