Ondřej Švanda
Ondřej Švanda
There should still be a guide on how to provide a "namespaced" ClsService in the docs though. One use case would be to store a transaction object there - the...
TODO: Add publish workflow
I agree that this should be in the Readme - maybe under *Security considerations*? If you don't mind and have the time, you can suggest the edit in https://github.com/Papooch/nestjs-cls/pull/11. I've...
Ok, I have a proof of concept: ```ts // pickable.ts export type Primitive = string | number | boolean | bigint | null | void | symbol | Function; export...
We are implementing idempotency and are using the transaction feature by extending `ClientKafka` (same as mr. thicks above) and exposing the producer instance. @kamilmysliwiec I am interested in contributing the...
@kamilmysliwiec Here's the thing. I think that forcing the microservice API to be too general actually hurts the case. If the API was the same for all transports then there...
I was trying to convert my OpenSCAD project to JSCAD, and bumped into this issue, too. In OpenSCAD, importing SVG with nontrivial holes just works™. Here's a screenshot with the...
After reading the documentation, I still don't understand how to use it... Could you please explain to me how can I convert this: ``` "_moduleAliases": { "@root": ".", "@submodules": "submodules",...
Well that's what I tried also, but I am getting and error. in `C:\repos\project\src\db\connect.js`, I am using ```js const { initModels } = require('#submodules/db-models/master'); ``` But it throws an error,...
@nick-bull Well, that does seem to work, but I have to explicitly state the file, including the file extension. `require('#submodules/db-models/master/index')` does *not* work. I would have to change imports in...