Damian Kaczmarek
Damian Kaczmarek
Currently the errors are pretty raw and useful mostly to developers: ``` ConfigurationInvalidError: Configuration for module root is invalid. Make sure the module is correctly configured. Error: redisPort(required): Required value...
Add a simplified version of join that's executed on the client side (mimics .populate in mongoose)
Rationale: At least for mongoose it appears that executing simple queries such as "fetch me all resources of author X and populate author X in the results" actually takes longer...
Ability to cherry-pick groups next to default fields / Define groups that are by default excluded.
```ts import { t, jsonSerializer } from '@deepkit/type'; class Foo { @t name!: string; @t.any.group('withDetails') veryBigObject!: any; } const out = jsonSerializer.for(Foo).deserialize({ name: 'foo', veryBigObject: { abc: 1, def: 2...
I know that ability to work async would be a fundamental change/improvement but I wanted to present this idea anyway. Any async API would have to be separate from the...
`extract-css-chunks-webpack-plugin` seems to supercede `mini-css-extract-plugin` I saw a PR that was making it possible to specify which plugin to use but it got closed, any ideas?
@mbroadst I had a lazy evening and a crazy idea to use weak pointers instead of `NLVObjectPtr`. Note: `enable_shared_from_this` is probably not necessary but I wanted you to see this...
I wanted to handle first message differently then the rest: ``` const messageHandler = message => { handleDifferently(message); ws.onmessage = anotherMessageHandler; }; ws.onmessage = messageHandler; ``` ``` cWS does not...
- Operating System: openSUSE Tumbleweed - Node Version: 14 - NPM Version: newest - webpack Version: newest - webpack-dev-middleware Version: newest ### Feature Proposal Ability to disable "middleware delays requests...