Skip to content
cjhaas blog

Basically a place that Chris can post solutions to problems so he can easily find them later

cjhaas blog

Basically a place that Chris can post solutions to problems so he can easily find them later

navigator.sendBeacon()

Posted on August 9, 2017 By [email protected]

Whenever you want to send a small amount of data to the server from client-side JS you almost always use AJAX, right? (Or, if you’re old enough, maybe a JS generated <img />.) For example, maybe you want to benchmark user actions or maybe you have your own special analytics. Whatever the case, your browser cannot distinguish between your important but optional tracking/benchmark JS and your application’s 100% required JS. From the browser’s perspective they both carry the same importance and will be treated as show-stopping code that must happen or the world will end. Okay, maybe the world won’t end, but the webpage must execute the code and block until that code happens.

Enter navigator.sendBeacon() which works pretty much the same as ajax.post() except that you don’t get to specify a callback and it always works asynchronously.

The goals of this method from the current editor’s draft of the spec are

  • Beacon requests are prioritized to avoid competing with time-critical operations and higher priority network requests.
  • Beacon requests may be efficiently coalesced by the user agent to optimize energy use on mobile devices.
  • Beacon requests are guaranteed to be initiated before page is unloaded and are allowed to run to completion without requiring blocking requests or other techniques that block processing of user interactive events.

A word of caution

One very important thing to note is that sendBeacon() does not actually send the beacon, it only queues the request for later. This is a small but important difference. The purpose of the sendBeacon() method is to send a small amount of data to the server and if your payload is too big then the user’s browser might reject the beacon call. When you call sendBeacon() you should always check the return value and if that fails you should fallback to an AJAX request.

Sample code

Here’s a basic sample of how to use it. It assumes you’ve already got your favorite AJAX code.

/*jslint maxparams: 4, maxdepth: 4, maxstatements: 25, maxcomplexity: 10 */
/*global ajax */
(function( )
{
    'use strict';                         //Force strict mode

    var

        init = function()
        {
            var
                //Whatever our data is
                data = {
                            a: 'cheese',
                            b: 'beer',
                },

                //Your URL
                url = '/your/endpoint/here',

                //Assume that we need to use AJAX
                useAjax = true
            ;

            //If we have sendBeacon() enabled
            if( navigator.sendBeacon )
            {
                //Try queuing the beacon.
                //NOTE: This does NOT actually send right here, only queues!!
                if( navigator.sendBeacon( url, data ) )
                {
                    //It queued correctly, we don't need to fallback to AJAX
                    useAjax = false;
                }
            }

            if( useAjax )
            {
                //Assuming you've got this method already setup elswhere with the signature:
                //ajax.post = function( url, data, callback, sync ){}
                ajax.post( url, data, function(){}, true );
            }
        }
    ;

    //Kick everything off
    init( );
}
()
);

How much is too big?

Right now it appears that Edge and Firefox have a maximum of 64KB for each beacon and Chrome has a combined maximum of 64KB for (essentially) the page. This can be seen in both the editor’s commit notes as well as through some testing found on Stack Overflow.

JavaScript

Post navigation

Previous post
Next post

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Recent Posts

  • Google open redirect
  • How to use AI to write code
  • Doctrine/Symfony MariaDB DSN connection string
  • Creating a portable copy of pdftotext from source
  • Gravity Forms shortcode getting extra line breaks when used with ACF

Recent Comments

  • jose luis on #2 – VB.Net iTextSharp Tutorial – Add an image to a document
  • Eliezer Castanon on iTextSharp slightly smarter text extraction strategy
  • javad on How to recompress images in a PDF using iTextSharp
  • MANOUS3784 on Flock is awesome
  • Sang on Flock is awesome

Archives

  • June 2026
  • October 2025
  • November 2023
  • September 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • December 2022
  • September 2022
  • April 2022
  • October 2021
  • September 2021
  • April 2021
  • January 2021
  • October 2020
  • August 2020
  • June 2020
  • May 2020
  • December 2019
  • November 2019
  • October 2019
  • July 2019
  • May 2019
  • December 2018
  • October 2018
  • July 2018
  • November 2017
  • October 2017
  • August 2017
  • July 2017
  • June 2017
  • May 2017
  • April 2017
  • March 2017
  • February 2017
  • January 2017
  • September 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • July 2014
  • November 2013
  • May 2013
  • April 2013
  • March 2013
  • January 2013
  • November 2012
  • October 2012
  • July 2012
  • March 2012
  • January 2012
  • October 2011
  • September 2011
  • July 2011
  • February 2011
  • December 2010
  • November 2010
  • October 2010
  • September 2010
  • August 2010
  • June 2010
  • April 2010
  • January 2010
  • December 2009
  • November 2009
  • October 2009
  • July 2009
  • June 2009
  • May 2009
  • April 2009

Categories

  • Accessibility
  • Advanced Custom Fields
  • Authorize.Net
  • BWP Minify
  • Composer
  • Crappy Google Search Results of the Day
  • CSS
  • Doctrine
  • Drupal
  • Drush
  • Elasticsearch
  • Fun links of the day
  • Google Analytics
  • Gravity Forms
  • HHVM
  • HTML
  • iTextSharp
  • JavaScript
  • Linux
  • mysql
  • nginx
  • Optimization
  • PDF
  • PdfPTable
  • PHP
  • Plugins
  • Ramblings
  • Random things I learned
  • Redis
  • Security
  • simplesamlphp
  • SQL Server
  • SSH
  • SSL/TLS/HTTPS
  • Stack Overflow
  • SVG
  • Symfony
  • Synology
  • Uncategorized
  • Unicode
  • Varnish
  • Vendi Best Practice
  • VIP
  • Weird Google Search Results
  • Windows
  • WordPress
  • WP-CLI

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
©2026 cjhaas blog | WordPress Theme by SuperbThemes