heartbeatjs
is a small light weight library that helps you run periodic heartbeat functions and detects timeouts when they occur by launching events.
It was mainly designed for tcp/ip connections, but you can use it with any protocol you want as it designed to be generic.
When you are connected to a third party mahcine (aka target), most of the time you need to know if the target is alive or not.
To do this, there are two common scenarios:
- the target notifies you when it is about to go down
- you poll the target to check its status
In cases where the first scenario doesn't happen or it is incomplete, you need to resort to polling to check on it.
heartbeatjs
was desgined for this purpose and its function is to help you poll targets.
Following are instructions on how to intsall and use heartbeatjs
. If you have any questions you can ask in the issues page:
Feel free to check the heartbeatjs project page for additional information as well.
- getBeatInterval
- setBeatInterval
- getBeatTimeout
- setBeatTimeout
- hasTimedOut
- getPing
- setPing
- getPong
- setPong
- receivedPong
- stop
- start
- reset
- isBeating
- onTimeout
Start a heartbeat that sends a message periodically to a target, with
DEFAULT.TIMEOUT
5s and DEFAULT.INTERVAL
3s:
const net = require('net');
const heartbeatFactory = require("heartbeatjs");
const myHeartBeat = heartbeatFactory();
const client = net.createConnection({ port: 8124 }, () => {
//'connect' listener
console.log('connected to target!');
myHeartBeat.start(() => {
client.write("Hello World!");
});
});
Now let's say that every time we get a message, we consider it a pong:
client.on("data", data => {
myHeartBeat.receivedPong();
//timeout timer resetted!
});
Heartbeat with custom Pings and Pongs:
const client = net.createConnection({ port: 8124 }, () => {
//'connect' listener
console.log('connected to target!');
myHeartBeat.setPing("Marco");
myHeartBeat.setPong("Polo");
myHeartBeat.start(() => {
//send ping every 3s
client.write(myHeartBeat.getPing());
});
});
client.on("data", data => {
if(data === myHeartBeat.getPong()){
myHeartBeat.receivedPong();
return;
}
//process data
});
Listen to when target dies via timeout:
const client = net.createConnection({ port: 8124 }, () => {
//'connect' listener
console.log('connected to target!');
myHeartBeat.onTimeout(() => console.log("Timed Out!"));
myHeartBeat.start(() => {
//send ping every 3s
client.write("Hello World");
});
});