OOrveth

Documentation

Getting Started

Install Orveth and run your first HTTP server in a few lines of TypeScript.

Start with the umbrella package for the full Phase 1 ecosystem, or install @orveth/server when you only need the HTTP runtime.

Install

terminal
npm install orveth

Create a server

server.ts
import { Orveth } from "orveth";

const app = new Orveth();

app.get("/", (ctx) => {
  return ctx.json({ ok: true });
});

await app.listen({ port: 3000 });