Socket
Socket
Sign inDemoInstall

load-stripe

Package Overview
Dependencies
7
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    load-stripe

Load the promisified stripe api in the browser.


Version published
Weekly downloads
26
Maintainers
1
Install size
60.0 kB
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 13 Jul 2016

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc