Features
Docs
Benchmarks
Examples
GitHub

© 2024 MoroJs

MoroJSoroJS

High-performance TypeScript framework with intelligent routing and zero-friction developer experience. Built for modern APIs.

Why Choose MoroJS?

High Performance

Optimized for speed with minimal overhead. Verified 68k+ req/sec synthetic, 50k+ real-world with full TypeScript safety.

Modular Architecture

Pick and choose only what you need. From lightweight edge handlers to full-featured services, scale as you grow.

AI Agent Ready

Build MCP (Model Context Protocol) servers to connect Claude Desktop and other AI agents to your applications. Perfect for the AI revolution.

TypeScript-First

End-to-end type safety with excellent IDE support. Catch errors at compile time, not runtime.

Zero-Friction DX

Intuitive APIs, excellent documentation, and sensible defaults. Start building immediately, no boilerplate required.

Edge-Ready

Deploy anywhere - from Cloudflare Workers to AWS Lambda. Built for modern serverless architectures.

Simple. Powerful. Fast.

Build APIs with just a few lines of code.
MoroJS handles the complexity so you can focus on your business logic.

import { createApp } from '@morojs/moro';
 
const app = createApp();
 
app.get('/users/:id', (req) => {
  const { id } = req.params; // Fully typed!
  return { id, name: 'User ' + id };
});
 
app.listen(3000); // That's it! 🚀