httpha
Version:
`httpha` is a simple client-side load balance and HA module.
33 lines (20 loc) • 698 B
Markdown
[](http://travis-ci.org/aleafs/httpha)
[](https://coveralls.io/r/aleafs/httpha)
`httpha` is a simple client-side load balance and HA module.
```javascript
var httpha = require('httpha');
var ha = httpha.create({
'interval' : 1000,
}, httpha.httpStatusChecker('/status', {
'timeout' : 1000,
}));
ha.add({'hostname' : '127.0.0.1', 'port' : 8080});
ha.add({'hostname' : '127.0.0.2', 'port' : 8080});
ha.add({'hostname' : '127.0.0.1', 'port' : 8081});
console.log(ha.fetch());
console.log(ha.fetch());
```
MIT