Panda
Panda
```ts import { Elysia } from 'elysia'; // use .ready() method // export default new Elysia({ prefix: '/api' }) // .use(import('./c.ts')) // .use(import('./d.ts')); // .ready() // Promise const component =...
add method .ready in class Elysia ready(){ return this.modules.then(() => this); }
It would be very nice if this parameter took a boolean value to disable all auto headers, or an array of headers to specify specific headers.
How about adding a method .deprecated() and adding the schema to the metadata? https://json-schema.org/draft/2020-12/json-schema-validation#section-9.3
How about adding an easy way to implement different connectors? This is necessary in order to open connections before destonation of the server through various proxies and tunnels (http/socks and...
The problem is that bun polyfill undici. https://github.com/oven-sh/bun/issues/17799
It is also worth noting that request cannot accept [string, string][], but accepts the current string[], while fetch accepts [string, string][], but cannot process string[]