├── .gitignore ├── .npmignore ├── app.js ├── img ├── instructions.gif └── notification-screenshot.jpg ├── package.json ├── readme.md └── sounds └── beep.wav /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | // .npmignore 2 | node_modules/ -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavdc/cowin-pinger/HEAD/app.js -------------------------------------------------------------------------------- /img/instructions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavdc/cowin-pinger/HEAD/img/instructions.gif -------------------------------------------------------------------------------- /img/notification-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavdc/cowin-pinger/HEAD/img/notification-screenshot.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavdc/cowin-pinger/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavdc/cowin-pinger/HEAD/readme.md -------------------------------------------------------------------------------- /sounds/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhinavdc/cowin-pinger/HEAD/sounds/beep.wav --------------------------------------------------------------------------------