Utility to automatically mount Express routers from src/routes/*.
npm i @numquid/route-mounterimport express from "express";
import { mountRouters } from "route-mounter";
const app = express();
mountRouters(app);src/routes/
home/
homeRouter.ts
users/
usersRouter.tsIf a folder contains an index.ts or a file named *Router.ts, the first router found will be mounted. A folder named home will be mounted at /, others will be kebab-cased and mounted under /.