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

https://github.com/ryym/ping-github


https://github.com/ryym/ping-github

Last synced: about 2 months ago
JSON representation

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!'),
},
})
```