
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
gatsby-plugin-use-shopping-cart
Advanced tools
A plugin for use-shopping-cart to kickoff your ecommerce experience with Stripe.
This is a WIP and not stable yet, use at your own risk.
This plugin simplifies the use of use-shopping-cart with your existing Gatsby site by handling the integration of the <CartProvider> for you. Use-shopping-cart is an API layer to manage shopping cart logic and handle integration with Stripe payments for secure transactions.
npm install gatsby-plugin-use-shopping-cart use-shopping-cart
yarn add gatsby-plugin-use-shopping-cart use-shopping-cart
//gatsby-config.js
plugins: [
//...other plugins...
{
resolve: `gatsby-plugin-use-shopping-cart`,
options: {
mode: "payment",
cartMode: "client-only",
stripePublicKey: process.env.GATSBY_STRIPE_PUBLIC_KEY,
successUrl: "https://www.google.com", // url must start with http or https
cancelUrl: "https://www.stripe.com", // url must start with http or https
currency: "USD",
allowedCountries: ["US", "GB", "CA"],
billingAddressCollection: true,
},
},
]
mode - String cartMode - String stripePublicKey - String successUrl - String cancelUrl - String currency - String allowedCountries - Array of strings billingAddressCollection - Boolean
FAQs
A plugin for use-shopping-cart to kickoff your ecommerce experience with Stripe.
We found that gatsby-plugin-use-shopping-cart 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.