UNPKG

heartbeat-sh

Version:

A js client library for heartbeat.sh

26 lines (17 loc) 572 B
# heartbeat.js A js client library for [heartbeat.sh](https://heartbeat.sh). ## Usage Install the package with `npm i heartbeat-sh` ### Example Usage: ```Javascript const heartbeatClient = require('heartbeat-sh') const secondsPerDay = 86400 const secondsPerHour = 3600 const myClient = new heartbeatClient({subdomain: "example"}) // Send a heartbeat myClient.SendHeartbeat("example:js", secondsPerDay + 2 * secondsPerHour, secondsPerDay * 2) // Delete a heartbeat myClient.DeleteHeartbeat("deleteme") ``` ## Links - npm: https://www.npmjs.com/package/heartbeat-sh