TomBebb / elysia-fs-router

Simple ElysiaJS Filesystem Router plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Simple ElysiaJS Filesystem Router plugin


Languages

Language:TypeScript 100.0%