v1.0.0 is Production Ready

The Hyper-Performance TypeScript Monolith.

Combine the raw speed of HyperExpress, the reactivity of Svelte 5, and the seamless glue of Inertia.js. Build full-stack apps with 100% type safety and zero API latency.

MIT License Node.js 20+ TypeScript 5.0+
bash — node
~ npx create-laju-app my-app
Downloading template...
Installing dependencies...
✔ Setup complete!
my-app npm run dev
⚡ HyperExpress v6.14.0
Listening on http://localhost:5555
➜ Latency: 1.52ms
_

Powered by the Bleeding Edge

We curated the fastest tools in the Node.js ecosystem so you don't have to. No legacy bloat, just raw performance.

HyperExpress

Built on uWebSockets.js. Outperforms Express.js by 11x and handles high concurrency effortlessly.

Svelte 5

The latest evolution of UI. Write concise code with Runes, smaller bundles, and fine-grained reactivity.

Inertia.js

The Modern Monolith. Build Single Page Apps (SPA) without the complexity of client-side routing.

BetterSQLite3

Embedded DB with WAL Mode enabled. Lightning-fast reads and writes without network overhead.

Unfairly Fast.

We benchmarked Laju against the giants on a Mac M4. The results aren't even close.

258k
Requests / Sec
1.52ms
Avg Latency
3,232x
Faster than Laravel
Framework Requests/Sec Avg Latency Verdict
Laju.dev
258,611 1.52ms 🚀 The Standard
Pure Node.js 124,024 3.62ms 2x Slower
Express.js 22,590 26.36ms 11.45x Slower
Laravel 80 128.72ms 3,232x Slower
Benchmarks run on Mac M4, 12 threads, 400 concurrent connections.
WAL Mode Enabled

Database Writes at Warp Speed.

Laju configures BetterSQLite3 with Write-Ahead Logging (WAL) out of the box. No more "database locked" errors during high concurrency.

19.9x Faster Writes

WAL mode handles 93,287 ops/sec vs 4,678 ops/sec in default journaling.

Non-Blocking Concurrency

Reads and writes happen simultaneously. Your app stays responsive under load.

Hybrid Flexibility

Use Knex.js for complex queries or the Native Driver for raw speed (290k ops/sec reads).

Single Insert Operations (Ops/Sec)

Laju (WAL Mode) 93,287
Default SQLite Journal 4,678
Tested on Mac M4
19.9x Faster

Clean Syntax. Full Control.

Enjoy the simplicity of a monolith architecture with the power of a modern frontend. Server-side Logic meets Client-side Reactivity.

TS PostController.ts
S index.svelte
// app/controllers/PostController.ts
import DB from "app/services/DB";

class PostController {
// 1. Fetch data from database
public async index(req, res) {
const posts = await DB.from("posts")
.orderBy("id", "desc");

// 2. Render Svelte page server-side
return res.inertia("posts/index", { posts });
}
}
// resources/js/Pages/posts/index.svelte
<script>
// Svelte 5 Runes
let { posts } = $props();
</script>

<h1 class="text-2xl font-bold">Latest Posts</h1>

{#each posts as post}
<div class="card p-4">
<h2>{post.title}</h2>
<p>{post.content}</p>
</div>
{/each}
✨ Compatible with Cursor & Windsurf

Built for the
AI-Assisted Era.

Laju is designed to be 100% compatible with AI coding workflows. The standardized structure allows LLMs to understand, navigate, and build features for you without hallucinations.

The No-Code Promise

"Describe your app in README.md, ask AI to generate a TODOLIST, and watch it build your entire startup MVP in hours, not weeks."

1

Describe

Write your requirements in README.md. Define target users and features.

2

Generate Plan

AI creates a TODOLIST.md breaking down migrations, controllers, and pages.

3

AI Builds

Watch AI implement features step-by-step. "Implement the Auth system" becomes working code.

4

Ship It

Go from idea to production-ready MVP with best practices and Type Safety built-in.

Everything You Need to Ship.

Stop assembling boilerplate. Laju comes with the essential tools pre-configured so you can focus on your product logic.

Authentication Ready

Built-in session management, Google OAuth integration, and email verification flows out of the box.

Smart S3 Uploads

Secure Presigned URL implementation for direct-to-cloud uploads. Supports Wasabi, AWS S3, and R2.

Auto Backups

AES-256 encrypted database backups automatically pushed to S3 with configurable retention.

Squirrelly Engine

Blazing fast server-side HTML rendering for SEO pages, emails, or static content requirements.

TailwindCSS

Pre-configured with a custom theme. No setup required, just start styling your components.

CLI Power

Generate controllers, run migrations, and manage cron jobs effortlessly via terminal commands.

Built with Laju

Real Products in Production

Discover applications built with Laju framework — from AI landing page builders to marketing automation tools.