Beacon API
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2018.
TheBeacon API is used to send an asynchronous and non-blocking request to a web server. The request does not expect a response. Unlike requests made usingXMLHttpRequest or theFetch API, the browser guarantees to initiate beacon requests before the page is unloaded and to run them to completion.
The main use case for the Beacon API is to send analytics such as client-side events or session data to the server. Historically, websites have usedXMLHttpRequest for this, but browsers do not guarantee to send these asynchronous requests in some circumstances (for example, if the page is about to be unloaded). To combat this, websites have resorted to various techniques, such as making the request synchronous, that have a bad effect on responsiveness. Because beacon requests are both asynchronous and guaranteed to be sent, they combine good performance characteristics and reliability.
For more details about the motivation for and usage of this API, see the documentation for thenavigator.sendBeacon() method.
Note:This API isnot available inWeb Workers (not exposed viaWorkerNavigator).
In this article
Interfaces
This API defines a single method:navigator.sendBeacon().
The method takes two arguments, the URL and the data to send in the request. The data argument is optional and its type may be a string, anArrayBuffer, aTypedArray, aDataView, aReadableStream, aBlob, aFormData object, or aURLSearchParams object. If the browser successfully queues the request for delivery, the method returnstrue; otherwise, it returnsfalse.
Specifications
| Specification |
|---|
| Beacon> # sendbeacon-method> |