Is my site up? Node.js edition.
$ npm install pin
var pin = require('pin');
pin('http://google.com/')
.interval(10000) // in ms
.up(function(response) {
console.log(response);
})
.down(function(error, response) {
console.log(error, response);
});
Both "up" and "down" are optional.
$ npm install
$ make test
MIT License