UNPKG

@swizzyweb/swizzy-web-service

Version:

Web service framework for swizzy dyn serve

17 lines (16 loc) 364 B
/** * Adds a rqeuest id to the swizzy store. */ export function RequestIdMiddleware(props) { return function (req, res, next) { if (req.swizzy?.requestId) { next(); return; } if (!req.swizzy) { req.swizzy = {}; } req.swizzy.requestId = crypto.randomUUID(); next(); }; }