Skip to main content
Deno 2 is finally here πŸŽ‰οΈ
Learn more

fsrouter

A file system based router for Deno.

Usage

Given a project with the following folder structure:

my-app/
β”œβ”€ pages/
β”‚  β”œβ”€ blog/
β”‚  β”‚  β”œβ”€ post.ts
β”‚  β”‚  β”œβ”€ index.ts
β”‚  β”œβ”€ about.ts
β”‚  β”œβ”€ index.ts
β”œβ”€ mod.ts

And the following mod.ts:

// my-app/mod.ts
import fsRouter from "https://deno.land/x/fsrouter@{VERSION}/mod.ts";
import { serve } from "https://deno.land/std@{VERSION}/http/server.ts";

// Use the file system router with base directory 'pages'
serve(await fsRouter("pages"));

Routes are then served as follows:

File Route
pages/index.ts /
pages/about.ts /about
pages/blog/index.ts /blog
pages/blog/post.ts /blog/post