cls-proxify
cls-proxify copied to clipboard
Logging on steroids with CLS and Proxy. Integrated with express, koa, fastify.
On this code: ``` const Koa = require('koa'); const bunyan = require('bunyan'); const {clsProxify} = require('cls-proxify'); const {clsProxifyKoaMiddleware} = require('cls-proxify/integration/koa'); const app = new Koa(); const logger = bunyan.createLogger({ name:...
Hi, Based on the current [implementation](https://github.com/aigoncharov/cls-proxify/blob/master/src/core.ts#L5), proxy method calls are not able to update the wrapped object private members. It is related to the [No private property forwarding](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy#no_private_property_forwarding) topic. I...