@epic-js/express-profiler 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -56,7 +56,7 @@ GET /slow 200 518.3ms
56
56
  External API: 203.9ms
57
57
  ```
58
58
  ```js
59
- // ----- Slow route -----
59
+ // ----- Route with nested async -----
60
60
  app.get('/nested', async (req, res) => {
61
61
  await wrapAsync(async () => {
62
62
  await wrapAsync(() => new Promise(r => setTimeout(r, 100)), 'Inner DB', req)();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epic-js/express-profiler",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Lightweight Express API profiler with route/middleware/async timing",
5
5
  "main": "index.js",
6
6
  "bin": {