UNPKG

file-routing-expressjs

Version:

A dependency-free, flexible, system-based file routing for Express.

11 lines 248 B
import { REQUEST_ID } from "../constants/keys"; const tracingMiddleware = (req, _, next) => { const id = crypto.randomUUID(); req[REQUEST_ID] = id; req.id = id; next(); }; export { tracingMiddleware }; //# sourceMappingURL=tracing.mjs.map