backend-latency-profiler-helper

Installation
SKILL.md

Backend Latency Profiler Helper

Find and fix API performance bottlenecks.

Slow Endpoint Detection

// Middleware to track latency
app.use((req, res, next) => {
  const start = Date.now();

  res.on("finish", () => {
    const duration = Date.now() - start;
Related skills

More from patricio0312rev/skills

Installs
122
GitHub Stars
38
First Seen
Jan 24, 2026