Jozef Mikuláš
Jozef Mikuláš
@Inplex-sys I am compiling with `pkg`, meaning it's Node (v18.12.1) and using [@whatwg-node/server](https://www.npmjs.com/package/@whatwg-node/server) as the Request/Response API compatibility layer. Everything works fine when not compiling to binary. Seems like [bun...
How is this supposed to work with Plugins? Consider this example: ```tsx import { Elysia } from "elysia"; const myPlugin = () => (a: Elysia) => a.derive(() => ({ myPluginProp:...
@SaltyAom any thoughts on [this](https://github.com/elysiajs/elysia/issues/513#issuecomment-1999422813). Seems like this completely prevents usage of plugins using `derive` in v1.
I propose this: - have users define `toJSON()` method on their data classes, which returns the plain, json-serializable representation of the object - have Elysia call `toJSON()` method if it's...
This is blocking our migration to latest Elysia.
+1 my two cents: - sometimes it would be handy to be able to throw a response and have Elysia respond with it. For example, let's say in `derive()` we...
just reported the same issue a couple hours ago: https://github.com/elysiajs/elysia/issues/1488
Do you have any sense of when the fix will be released, please?