MoroJS Documentation

Build high-performance, type-safe APIs with intelligent routing and zero-friction developer experience. MoroJS is designed for modern TypeScript development with production-ready features out of the box.

Quick Start

1

Install MoroJS

Get started with a single command

npm install @morojs/moro
2

Create your API

TypeScript-first development

import { createApp } from '@morojs/moro';
const app = createApp();
3

Add routes

Intelligent routing with validation

app.get('/', () => ({ hello: 'world' }));
app.listen(3000);

Why Choose MoroJS?

What's Included

Next Steps