Stripe Terminal loading utility
Use the Terminal JS SDK as an ES
module.
Note: This package dynamically loads the Stripe Terminal SDK fromhttps://js.stripe.com and wraps the SDK's globalStripeTerminal function. To
be
PCI compliant,
you must load the SDK directly from https://js.stripe.com by using this
library. You cannot include the dynamically loaded code in a bundle or host it
yourself.

Use npm or yarn to install the Terminal JS module:
``sh
> npm install @stripe/terminal-js
> yarn add @stripe/terminal-js
`
This function returns a Promise that resolves with a newly createdStripeTerminal object once the Terminal JS SDK has loaded. If necessary, itloadStripeTerminal
will load the SDK for you by inserting the Terminal JS script tag. If you call in a server environment it will resolve to null.
`js
import {loadStripeTerminal} from '@stripe/terminal-js';
const StripeTerminal = await loadStripeTerminal();
const terminal = StripeTerminal.create({
onFetchConnectionToken: async () => {
…
}
})
`
For more information on how to use the Terminal JS SDK once it loads, please
refer to the
Terminal JS SDK API reference
or follow our getting started guide.
This package includes TypeScript declarations for the Terminal JS SDK. We
support projects using TypeScript versions >= 3.1.
Some methods in Terminal JS SDK accept and return objects from the
Stripe API. The type declarations in
@stripe/terminal-js for these objects in currently track to
version 2018-08-23 of the Stripe API.
If you have code using other versions of the Stripe API you may have to override
type definitions as necessary.
Note that we may release new minor and patch versions of
@stripe/terminal-js with small but backwards-incompatible fixes to the type
declarations. These changes will not affect the Terminal JS SDK itself.
By default, this module will insert a
`
If you would like to use loadStripeTerminal in your application, but deferloadStripeTerminal
loading the Terminal JS SDK script until is first called,@stripe/terminal-js/pure
use the alternative import path:
`
import {loadStripeTerminal} from '@stripe/terminal-js/pure';
// Terminal SDK will not be loaded until loadStripeTerminal is called``