X Framework

The modern Node.js framework that embraces ecosystem freedom

Use any database, auth, or API layer you love - X adapts to your stack, not the other way around

x.ts
import { createX } from '@xframework/x';
 
export const x = createX()
  .syncAdapter('hono', () => new HonoAdapter(hono))
  .syncAdapter('db', () => new DrizzleAdapter(drizzle))
  .syncAdapter('stripe', () => new StripeAdapter(stripe))
  .syncAdapter('auth', () => new BetterAuthAdapter(auth))
  .syncAdapter('logger', () => new LogTapeAdapter(logTape));