Panda
Panda
I want you to add support for specifying raw data ja3 in header per request and global config I know that utls supports generating hello client from raw ja3. ```js...
It is also necessary to move the decompression of compressed data (gzip, deflate, br, zstd) into a separate interceptor
Maybe you need to add some parameter to unpack body ?
I think we need to add the decompress: boolean parameter in requestOptions
Wouldn't it be simpler to make a buildConnector for each type of proxy and use it as a connector? ``` const httpProxyBuildConnector = (proxy) => { return (opts) => {...
99% of proxies use basic authorization. This won't affect anything. Through the parameters it will be possible to specify an explicit authorization type, if it is not basic
Here it remains only to use the type box or write your own validator/serializer, which will be completely covered by types and JsonSchema last draft(2020-12) + OpenAPI 3.1.0 support. For...
Maybe we should add returning an elysia instance? ```ts import { Elysia, t } from 'elysia'; function createRouter() { const router = new Elysia({ prefix: '', name: 'test', seed: 100,...
Regular expressions start winning after about 20 characters, so you can use different implementations based on the number of characters. ```ts export function isValidHeaderValue(value: string) { for (let i =...
@mcollina , In applications where a large number of network requests are required, it is important that they are as productive as possible, not only without headers, but also with...