Trying to improve my score on Lighthouse and the general performance of a site. The official docs about including stripe.js mention (emphasis mine):
To best leverage Stripe’s advanced fraud functionality, include this script on every page, not just the checkout page. This allows Stripe to detect suspicious behavior that may be indicative of fraud as customers browse your website.
Which is understandable but means that, without async
/defer
, the script slows down the page slightly (by ~190 ms in my tests) on a majority of pages that barely use it.
And:
You can also load Stripe.js using the
async
ordefer
attribute on the script tag. Note, however, that with asynchronous loading any API calls will have to be made only after the script execution has finished.
This leaves me with the following questions:
- How can I check whether stripe.js has finished executing?
async
ordefer
? i.e. is stripe.js completely independent (async), or does it depend on the DOM being fully built (defer)?- Rather than check if stripe.js has finished executing, maybe I should just move my own, inline, Stripe code (for a checkout page) into its own dedicated JS file, loaded as defer. This way things would load in a non-blocking way, and would still execute in their relative order.
In a React environment I initialize as below:
any module that imports this one has access to the flags; the closure allows the function to run async at top level.