Load JS only during checkout process

Created on 4 March 2024, about 1 year ago

Problem/Motivation

The stripe JS library loads on all pages of the site, even when not needed. This impacts page load performance. We can improve page speed load times if JS is only required during the checkout payment process. See screenshot from https://pagespeed.web.dev

Steps to reproduce

  • Enable module
  • Load homepage
  • view source - Js is loaded via <script src="https://js.stripe.com/v3/"></script>

Proposed resolution

Load JS only during checkout. If possible, only load JS during payment processing section of checkout.

Remaining tasks

Implement

User interface changes

None

API changes

None

Data model changes

None

๐Ÿ“Œ Task
Status

Closed: duplicate

Version

1.0

Component

Code

Created by

๐Ÿ‡จ๐Ÿ‡ฆCanada sagesolutions

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @sagesolutions
  • ๐Ÿ‡ฎ๐Ÿ‡ฑIsrael jsacksick

    This is by design, please read: https://docs.stripe.com/js/including.

    That said, perhaps this could be made configurable somehow... The challenge is this cannot really be a payment gateway configuration as we can't really determine the payment gateway to load to look for such setting.

  • ๐Ÿ‡จ๐Ÿ‡ฆCanada sagesolutions

    Ah yes, Stripe wants to be loaded everywhere

    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.

    I wonder if we could have a config setting to only load on /cart and /checkout/* pages instead of the entire site?

  • ๐Ÿ‡จ๐Ÿ‡ฆCanada sagesolutions

    Alternatively, we could add the async tag on the script to improve pagespeed.

    You can also load Stripe.js using the async or defer 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.

  • Status changed to Closed: duplicate about 1 year ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States TomTech

    Closing as a duplicate of ๐Ÿ“Œ Attach Stripe.js using the defer attribute Needs review . There is more discussion there, including a proposed (albeit failing) MR.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States torgosPizza Portland, OR

    A setting for include paths would be cool. Keep in mind that a site would also need to add the script to any terminal pages for purposes such as manually entering a payment.

Production build 0.71.5 2024