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 orvethCreate 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 });