@moriajs/core
v0.4.33
Published
MoriaJS framework core — Fastify server, Vite integration, and routing
Readme
@moriajs/core
The engine of the MoriaJS framework.
Features
- File-Based Routing: Auto-discovery of routes in
src/routes. - SSR & Hydration: Server-side rendering with Mithril.js.
- Fastify under the hood: High-performance HTTP server.
- Vite Integration: Blazing fast development server and production builds.
- Middleware: Intuitive middleware system.
Usage
import { createApp } from '@moriajs/core';
const app = await createApp();
await app.listen({ port: 3000 });