Igor Strebz
Igor Strebz
Do you mean a plugin defining [`afterResponse` hook](https://github.com/sindresorhus/got/blob/main/documentation/9-hooks.md#afterresponse)?
@Qix-, github allows to [squash commits and merge](https://help.github.com/en/articles/merging-a-pull-request) them: 
@A-312 did you hear about [json-schema](https://json-schema.org/) drafts? If there will be a way to generate schemas in that format, some can utilize [json-schema-to-typescript](https://github.com/bcherny/json-schema-to-typescript) package and get typescript definitions for free!
@A-312 you have two options: 1. Write in the README about the [@types/convict](https://www.npmjs.com/package/@types/convict) package. A user just needs to install it via `npm install @types/convict --save-dev`. 2. Copy those [type...
There is no need to rewrite the codebase in typescript. Just a `index.d.ts` declaration file is enough. @HitkoDev have you seen @types/convict package?
At the moment, I'm migrating a project to convict 6, so I need some time to investigate the changes and rewrite typings. @DefinitelyTyped repo has CI with test runners and...
> You mostly only care about JSON processing time if your server is CPU-bound, in which case you don't want to spend extra CPU time on incremental parsing if you...
:+1: the same problem
@benkeen do you know approximately, what must be changed to implement this feature?
@sunli829 @ikrivosheev compression on small content sizes may have a high overhead. Also, `brotli` algorithm is CPU-bound. Is there any way to tune parameters in `poem`?