An open API service indexing awesome lists of open source software.

https://github.com/av/tracequest

Find out exactly what your backend is doing
https://github.com/av/tracequest

nodejs tracing

Last synced: 3 months ago
JSON representation

Find out exactly what your backend is doing

Awesome Lists containing this project

README

          

# Tracequest

Find out exactly what your backend is doing.

```typescript
import tracequest from "tracequest";

const app = express();
app.use(tracequest);

...

app.get("/", async (req, res) => {
// Ah, I wish all these external
// calls would always be just as easy to find...
await Promise.all([
queryDb(),
enrichWithCRMData(),
sendTelemetryToAThirdParty(),
maybeGetFromCache(),
setAnUnexpectedDeadlock(),
overfetchFromARateLimitedAPI(),
maybeFailBecauseOfDownstreamError(),
queryDataWhichIsAlreadyAvailable(),
doSomethingUseful(),
]);

res.send({ ok: true });
});
```