https://github.com/ryym/ping-github
https://github.com/ryym/ping-github
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ryym/ping-github
- Owner: ryym
- Created: 2016-07-28T07:37:40.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-28T22:40:27.000Z (almost 9 years ago)
- Last Synced: 2025-01-17T15:47:14.336Z (4 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Ping GitHub
Ping GitHub periodically.
### Usage:
```js
const { watchGitHub } = require('./lib')watchGitHub({
interval: 1000,
handlers: {
onNoChange: () => console.log('no change'),
onError: data => console.log('GitHub died..!'),
onRecovered: data => console.log('GitHub came back!'),
},
})
```