orveth
v0.3.0
Published
Meta-package: single install for all public @orveth/* modules.
Maintainers
Readme
orveth
Umbrella package for the Orveth backend framework ecosystem. Re-exports @orveth/server and optional modules from one entrypoint.
When to use
- You want
import { Orveth } from "orveth"and optional helpers (signJwt,listenHttps, …) without multiple install lines. - Prototypes and apps that use several Orveth packages at the same version.
When to prefer @orveth/server only
Production services that only need HTTP routing can install @orveth/server (and its dependencies) for a smaller graph. Add @orveth/jwt, @orveth/https, etc. only when needed.
Install
npm install orvethUsage
import { Orveth } from "orveth";
const app = new Orveth();
app.get("/health", (ctx) => ctx.ok({ ok: true }));
await app.listen(3000);Scoped equivalent:
import { Orveth } from "@orveth/server";Early stage
Orveth is pre-1.0. APIs are stable enough to ship but may change between minors until 1.0.
License
MIT — see LICENSE.
