Panda

Results 37 comments of Panda

I totally agree with you, we can just add caching to the current headers implementation. And we won't have to change much. When assembling a request, it would be good...

@kravetsone So how do I get that raw request body? At a minimum, the request instance must be a copy of the original one.

Well, even if you clone it, it won't work, since the body is subtracted before cloning. Why can't it be done humanly? ```ts app.post('/bug4', async ({ request }) => {...

cloning a request in bun costs 100ns, I think you can just profile elysia applications and remove bottlenecks, and implement this feature. I don't even know if it makes sense...

I'm also confused about what 's after .the close() agent no longer accepts requests, I think we need to completely not accept requests only at .destroy(), or add a method...

I think we need to split compression and decompression into separate interceptors and add decompression parameters to request options the decompress: boolean, compress: boolean. Also enable them by default ```typescript...

app.modules returns a non-elysia instance To do this, I suggest making a wrapper in the form of: export const asyncController = controller.modules.then(() => controller) I don't want to write wrappers...

This does not solve the problem

I just want to call ready() if there are dynamic imports from the instance, which will return a promo with the instance when all dynamic modules are loaded. And the...

@SaltyAom , I hope you understand me, please add this feature