Installation
Create a new project:
pnpm create @alstar
Follow the CLI prompts to set up a starter project in your chosen folder.
Development
Start the dev server:
pnpm run dev
This runs a Hono server.
The core app is created via createStudio(structure)
, which returns the Hono app. This makes it possible to extend the server with plugins or custom settings:
const app = await createStudio(structure)
// app.use(...) custom middleware