Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 7 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Easy Stripe Checkout
# Stripe Checkout

A simplified Stripe checkout integration for React and Next.js applications with extensive theme customization.

Expand All @@ -15,9 +15,9 @@ A simplified Stripe checkout integration for React and Next.js applications with
## Installation

```bash
npm install easy-stripe-checkout
npm install @includedavis/stripe-checkout
# or
yarn add easy-stripe-checkout
yarn add @includedavis/stripe-checkout
```

## Quick Start
Expand All @@ -26,7 +26,7 @@ yarn add easy-stripe-checkout

```tsx
// app/api/create-payment-intent/route.ts
import { createPaymentIntentHandler } from 'easy-stripe-checkout';
import { createPaymentIntentHandler } from '@includedavis/stripe-checkout';
import { NextResponse } from 'next/server';

const handler = createPaymentIntentHandler({
Expand All @@ -43,7 +43,7 @@ export async function POST(request: Request) {
```tsx
'use client';

import { StripeCheckout } from 'easy-stripe-checkout';
import { StripeCheckout } from '@includedavis/stripe-checkout';

const cartItems = [
{
Expand Down Expand Up @@ -82,7 +82,7 @@ export default function CheckoutPage() {

## Theme Customization

Easy Stripe Checkout offers extensive theme customization options. You can use built-in themes or create your own:
Stripe Checkout offers extensive theme customization options. You can use built-in themes or create your own:

```tsx
// Using a built-in theme
Expand Down Expand Up @@ -170,13 +170,9 @@ interface CheckoutOptions {
}
```

## Examples

See the `/examples` directory for complete implementations.

## Browser Support

Easy Stripe Checkout works in all modern browsers. Internet Explorer is not supported.
Stripe Checkout works in all modern browsers. Internet Explorer is not supported.

## License

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.