UNPKG

express-multitenant-kit

Version:

A lightweight helper module for building multi-tenant Express.js applications. Includes JWT-based route protection, dynamic route handling, and integration with express-tenant-router.

10 lines (8 loc) 240 B
const routeHandler = require("./lib/routeHandler"); const verifyTenantJWT = require("./lib/jwtGuard"); const tenantRouter = require("express-tenant-router"); module.exports = { routeHandler, verifyTenantJWT, tenantRouter };