Introduction

Welcome to DocKit — a modern framework for building fast, scalable web applications.

Overview

DocKit is a batteries-included web framework designed with developer experience at the forefront. It provides a set of strong conventions, type-safe utilities, and composable primitives that let you ship production-ready applications without the usual configuration overhead.

Note: This is an interactive template demo. In a real docs site, content would be sourced from MDX files or a headless CMS.

Features

  • File-based RoutingAutomatic route generation from your file structure — no manual registration.
  • Server-side RenderingBuilt-in SSR and streaming with React Suspense out of the box.
  • TypeScript NativeFirst-class TypeScript with zero-config inference and strict checks.
  • Edge ReadyDeploy to the edge runtime with zero cold-start overhead.
  • Plugin EcosystemExtend DocKit with a growing library of first-party and community plugins.

Requirements

DocKit requires Node.js 18 or later. Run the command below to scaffold a new project:

Terminal
npx create-dockit@latest my-app
cd my-app
npm run dev

Your dev server will be available at http://localhost:3000.

Getting Help