1.0.0 • Published 7 years ago

heartsuite-client v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

heartsuite-client

heartsuite-client is the client that sends heartbeat to a heartsuite-server

Usage

const HeartSuiteClient = require('heartsuite-client');
const server = "localhost"; //Server IP
const port = 23232; //Server port
const interval = 3000; //Heartbeat interval (ms)
const data = {}; //Additional data to be send to the server

let client = new HeartSuiteClient(server, port, interval, data);

client.on('beat', function(time){
  console.log(`Beat sent : ${time}`);
});

Issues

  • Feature request : tag Feature
  • Issue : please describe the problem and give steps to reproduce

Pull request

  • Use 2-space tabs