rambo-panda

Results 32 comments of rambo-panda

原生支持的Object.observe的性能,远不是那些Polyfill 能替代的!!!!

咨询下 BREACH 除了关闭压缩,还有别的方式吗?

@andytango Do you have any plans to merge in the near future? I am currently facing this issue as well? @anthrax63 when I use the package you published, I find...

When using the `keepMetadata` method, similar situations are also encountered ```js // test code const sharp = require("sharp"); (async () => { console.log('origin metadata', await sharp("./cmyk.jpg").metadata()); console.log('new metadata use toColorspace',...

Thank you for your reply. As you said, [vips_icc_transform](https://www.libvips.org/API/current/libvips-colour.html#vips-icc-transform) only accepts string system file paths. Therefore, I am currently providing business users with convenience through hooking `withMetadata` and `_pipeline`. This...

@mcollina I tried adding a `close` callback function, but it did not prevent or "delay" the thread(Worker)'s exit. In other words, the thread had already closed before I could do...

> You linked the logic that catches unhandledRejections.. how is that related? Sorry, the link above is incorrect, and in the above text, I mistakenly wrote the `main process` as...

thank you for your prompt reply https://github.com/pinojs/pino/blob/c109804c6ce4b4545f3dfe1d021ceb698582fe15/lib/transport.js#L60-L67 My confusion stems from the fact that once `Node.js` enters the `exit` event, even if we add a `ref` to the `worker stream`,...

The transport functionality I’m aiming to implement is as follows: 1. To collect logs passed down from upstream and, depending on their `level`, write them to different files (similar to...

> Yes, pino has its logic there to handle that case, while pino-syslog doesn't use it. I’m seeking guidance. How can I ‘delay’ the exit process? ![image](https://github.com/pinojs/pino/assets/2776050/196f2fd6-79b8-41ab-b6ae-45a6ac9f7cbe)