🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

load-stripe

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

load-stripe

Load the promisified stripe api in the browser.

1.0.3
latest
Source
npm
Version published
Weekly downloads
475
-3.26%
Maintainers
1
Weekly downloads
 
Created
Source

Load Stripe

Asynchronously loads the stripe javascript api in the browser returning a promise. The stripe api is also promisified using stripe-as-promised.

Installation

Npm

npm install load-stripe

Example

const load = require("load-stripe");

// Optionally override the stripe api version
load.version = 'https://js.stripe.com/v2/'; // This is the default.

// Async load stripe when you need it.
load("MY_PUBLISHABLE_API_KEY").then((stripe)=> {
	return stripe.card.createToken(some_source).then(...);
});

Contributions

  • Use npm test to run tests.

Please feel free to create a PR!

Keywords

async

FAQs

Package last updated on 13 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts