Update app and tooling

This commit is contained in:
Lawrence Chen 2026-01-29 17:36:26 -08:00
parent 3046531bdd
commit e620ec7349
4950 changed files with 2975120 additions and 10 deletions

21
node_modules/srvx/dist/log.mjs generated vendored Normal file
View file

@ -0,0 +1,21 @@
import { Colors } from "./_chunks/_utils.cli-B2YzwlOv.mjs";
//#region src/log.ts
const statusColors = {
1: "blue",
2: "green",
3: "yellow"
};
const log = (_options = {}) => {
return async (req, next) => {
const start = performance.now();
const res = await next();
const duration = performance.now() - start;
const statusColor = statusColors[Math.floor(res.status / 100)] || "red";
console.log(`${Colors.gray(`[${new Date().toLocaleTimeString()}]`)} ${Colors.bold(req.method)} ${Colors.blue(req.url)} [${Colors[statusColor](res.status + "")}] ${Colors.gray(`(${duration.toFixed(2)}ms)`)}`);
return res;
};
};
//#endregion
export { log };