Skip to content
v1.0 Β· Open Source Β· MIT License

Build blazing-fastΒ SvelteKit storefronts with Litekart

A modular, open-source commerce platform that gives you complete control over your stack. Extend the backend, customise the admin, and ship storefronts that feel instant.

A commerce platform with a framework for customisation.

Unlike rigid SaaS platforms, Litekart's framework lets you shape every aspect of your commerce backend β€” from data models to API routes to admin UI β€” without forking the core.

Create API Routes

Expose custom features as REST endpoints. Litekart mounts them automatically alongside the built-in routes.

Learn more β†’
// src/api/custom/route.ts
import { LitekartRequest, LitekartResponse }
  from '@litekart/core'

export async function GET(
  req: LitekartRequest,
  res: LitekartResponse
) {
  const productService =
    req.scope.resolve('productService')

  const products =
    await productService.list({ is_featured: true })

  res.json({ products })
}