tAt
A plugin for Elysia.js for server-side APIs
This works similarly to NextJS Router. Routes are created in an API directory
bun add @tophattedcoder/elysia-fs-router
/index.ts
import {Elysia} from 'elysia'
import {nextRouter} from '@tophattedcoder/elysia-fs-router'
const app = new Elysia()
router(nextRouter())
app.listen(8080)
console.log("Server listening at http://localhost:8080")
/api/[id]/info
import {Context} from "elysia";
export default async function (ctx: Context) {
return ctx.params!.id;
};