0.0.4 • Published 1 year ago

@tophattedcoder/elysia-fs-router v0.0.4

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

tAt

Elysia Filesustem Router

A plugin for Elysia.js for server-side APIs

This works similarly to NextJS Router. Routes are created in an API directory

Installation:

bun add @tophattedcoder/elysia-fs-router

Usage

/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;
};
0.0.4

1 year ago

0.0.1

1 year ago