@polar-sh/nextjs
TypeScript icon, indicating that this package has built-in type declarations

0.4.0 • Public • Published

@polar-sh/nextjs

Payments and Checkouts made dead simple with Next.js.

pnpm install @polar-sh/nextjs zod

Checkout

Create a Checkout handler which takes care of redirections.

// checkout/route.ts
import { Checkout } from "@polar-sh/nextjs";

export const GET = Checkout({
	accessToken: process.env.POLAR_ACCESS_TOKEN,
	successUrl: process.env.SUCCESS_URL,
	server: "sandbox", // Use sandbox if you're testing Polar - omit the parameter or pass 'production' otherwise
});

Query Params

Pass query params to this route.

  • productId (or productPriceId) ?productId=xxx
  • productPriceId (or productId) ?productPriceId=xxx
  • customerId (optional) ?productId=xxx&customerId=xxx
  • customerExternalId (optional) ?productdId=xxx&customerExternalId=xxx
  • customerEmail (optional) ?productId=xxx&customerEmail=janedoe@gmail.com
  • customerName (optional) ?productId=xxx&customerName=Jane
  • metadata (optional) URL-Encoded JSON string

Customer Portal

Create a customer portal where your customer can view orders and subscriptions.

// portal/route.ts
import { CustomerPortal } from "@polar-sh/nextjs";

export const GET = CustomerPortal({
	accessToken: process.env.POLAR_ACCESS_TOKEN,
	getCustomerId: (req: NextRequest) => "", // Fuction to resolve a Polar Customer ID
	server: "sandbox", // Use sandbox if you're testing Polar - omit the parameter or pass 'production' otherwise
});

Webhooks

A simple utility which resolves incoming webhook payloads by signing the webhook secret properly.

// api/webhook/polar/route.ts
import { Webhooks } from "@polar-sh/nextjs";

export const POST = Webhooks({
	webhookSecret: process.env.POLAR_WEBHOOK_SECRET!,
	onPayload: async (payload) => {
		// Handle the payload
		// No need to return an acknowledge response
	},
});

Payload Handlers

The Webhook handler also supports granular handlers for easy integration.

  • onCheckoutCreated: (payload) =>
  • onCheckoutUpdated: (payload) =>
  • onOrderCreated: (payload) =>
  • onOrderUpdated: (payload) =>
  • onOrderPaid: (payload) =>
  • onSubscriptionCreated: (payload) =>
  • onSubscriptionUpdated: (payload) =>
  • onSubscriptionActive: (payload) =>
  • onSubscriptionCanceled: (payload) =>
  • onSubscriptionRevoked: (payload) =>
  • onProductCreated: (payload) =>
  • onProductUpdated: (payload) =>
  • onOrganizationUpdated: (payload) =>
  • onBenefitCreated: (payload) =>
  • onBenefitUpdated: (payload) =>
  • onBenefitGrantCreated: (payload) =>
  • onBenefitGrantUpdated: (payload) =>
  • onBenefitGrantRevoked: (payload) =>
  • onCustomerCreated: (payload) =>
  • onCustomerUpdated: (payload) =>
  • onCustomerDeleted: (payload) =>
  • onCustomerStateChanged: (payload) =>

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.4.01,140latest

Version History

VersionDownloads (Last 7 Days)Published
0.4.01,140
0.3.23596
0.3.2241
0.3.210
0.3.2045
0.3.191
0.3.180
0.3.170
0.3.161
0.3.153
0.3.140
0.3.131
0.3.120
0.3.110
0.3.100
0.3.91
0.3.84
0.3.70
0.3.60
0.3.50
0.3.30
0.3.20
0.3.11
0.3.02
0.2.10
0.2.01
0.1.56
0.1.40
0.1.20
0.1.10
0.1.00

Package Sidebar

Install

npm i @polar-sh/nextjs

Weekly Downloads

1,640

Version

0.4.0

License

none

Unpacked Size

43.2 kB

Total Files

9

Last publish

Collaborators

  • birkjernstrom
  • emilwidlund
  • fvoron