ForgeKit Stable v1.0 is officially released. Upgrade now for zero-assertions DB compilation. Read Release Notes
Docs Nav

Examples Gallery

Scaffold and review pre-built repository configurations optimized for immediate deployment.

Official Quick Start Repositories

Explore official templates illustrating ForgeKit setups:


Code Snippet Checklist

Simple Health Check Endpoint

import app from '$lib/forgekit';

export const GET = async () => {
	const dbStatus = await app.db.ping();
	return new Response(
		JSON.stringify({
			status: 'healthy',
			database: dbStatus ? 'connected' : 'offline'
		})
	);
};