1.1.1 • Published 1 year ago

@donutteam/heartbeat v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Heartbeat

A simple function for periodically pinging a heartbeat URL.

Installation

Install the package with NPM:

npm install @donutteam/heartbeat

Usage

Call the heartbeat function with a URL, it's that simple!

// Somewhere in your application!
heartbeat("https://betteruptime.com/api/v1/heartbeat/my_cool_heartbeat_url_ye");

Options

You can also customise the interval and HTTP request type of the heartbeat using the second argument:

heartbeat("https://betteruptime.com/api/v1/heartbeat/my_cool_heartbeat_url_ye",
	{
		// How often the heartbeat should be pinged in milliseconds. Optional, defaults to 60000 (60 seconds).
		interval: 60000,

		// The HTTP method to use when pinging the heatbeat. Optional, defaults to "HEAD".
		method: "HEAD",
	});

License

MIT

1.1.1

1 year ago

1.1.0

1 year ago

1.0.1

2 years ago

1.0.0

2 years ago