Skip to content

Using Plugins to Customize Zap.ts

Zap.ts is highly modular, allowing you to select the features you want. Its core functionality is built on Next.js, Tailwind CSS, shadcn/ui, Better Auth, Zustand, and oRPC, while everything else is customizable. You’re required to pick at least one ORM (Drizzle or Prisma), but additional features are available as optional plugins.

Required Choice: ORM

You must enable one of the following ORM plugins:

PluginDescriptionDependenciesAvailable
drizzleSets up Drizzle ORMdrizzle-orm, @neondatabase/serverless
prismaSets up Prisma ORMprisma

TIP

We recommend Neon as the default database for Drizzle. This is the database set up by default but you can replace it by another.

Optional Plugins

PluginDescriptionDependenciesAvailable
polarAdds payment with Polar@polar-sh/better-auth, @polar-sh/sdk
stripeAdds payment with Stripe@better-auth/stripe, stripe
emailsAdds email with Resend + templatesresend, react-email
admin-dashboardAdds an admin dashboardNone
ui-templatesAdds UI templatesNone
blogAdds a blog with MDX support@mdx-js/react, @mdx-js/loader, @next/mdx, @types/mdx
aiAdds AI Vercel SDKai, @ai-sdk/react, @ai-sdk/openai, @ai-sdk/mistral
legalAdds legal templates page@mdx-js/react, @mdx-js/loader, @next/mdx, @types/mdx
pwaAdds PWA with push notificationssw.js, manifest.ts, web-push, ky

TIP

MDX Configuration
We keep the @mdx-js/react, @mdx-js/loader, @next/mdx and @types/mdx plugins installed even if you don't use the blog or the legal plugin. Therefore, you will have to remove the MDX configuration manually if you are sure you don't want to use it.

What is Ky?
ky is a lightweight and modern HTTP client for browsers, built on fetch. It offers a cleaner API, automatic retries, request cancellation, JSON handling, and other convenient features—making it a great alternative to raw fetch.

Released under the MIT License.