
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
use-checkout
Advanced tools
A tiny react hook to easily integrate Stripe's hosted Checkout in a react app
use-checkoutA React hook to be able to easily use Stripe's new (currently in beta) checkout
A tiny React hook that makes it easy to setup Stripe's new Checkout in your React app. If you use this hook multiple times it will only ever create one Stripe instance
If your building an ecommerce site this hook pairs very nicely with the use-cart
Note: please ensure you install versions >= 16.8.0 for both react and react-dom, as this library depends on the new hooks feature
npm i use-checkout --save
yarn add use-checkout
import useCheckout from "use-checkout"
// Items for checkout
const items = [{ sku: "SKU_1", quantity: 1 }, { sku: "SKU_2", quantity: 3 }]
const succesUrl = "https://my-website.com/success-url"
const cancelUrl = "https://my-website.com/cancel-url"
const App = () => (
<div>
<button onClick={() => useCheckout({ items, successUrl, cancelUrl })}>
Go to checkout
</button>
</div>
)
useCheckout(publicKey)The hook that sets up the Stripe instance, you must provide
publicKey (String): Your Stripe Public Key, which can be found in the API keys page under the Developers menu item in the Dashboard
Object containing:
redirectToCheckout(options): Function - redirects to the Stripe Checkout with all the options passed throughuseCheckout objectredirectToCheckout(options)This method calls the stripe.redirectToCheckout function and passes along all the options to the function - see here for available options for Stripe Checkout
options (Object): an object containing the options used in the stripe.redirectToCheckout() function
MIT License.
FAQs
A tiny react hook to easily integrate Stripe's hosted Checkout in a react app
We found that use-checkout demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.