Ali Molaei

Results 26 comments of Ali Molaei

I made my middleware a ModuleMiddleware so it can be initiated after i18n module I think this is not a nestjs-i18n problem, but it can be written somewhere in docs...

Feel free to close the issue if you are not agree with the documentation update though

I found the problem, I was mapping my node_modules folder into my docker container in docker-compose.dev.yml so I don't have to run docker-compose build on every npm install Looks like...

Sorry, I'm late, but there is no 0.27.3 version https://www.npmjs.com/package/argon2?activeTab=versions ``` npm ERR! code ETARGET npm ERR! notarget No matching version found for argon2@^0.27.3. npm ERR! notarget In most cases...

Pong420 this almost worked for me with some fixes: ```import fuzzySearching from 'mongoose-fuzzy-searching';``` to ```import * as fuzzySearching from 'mongoose-fuzzy-searching';``` (This depends on tsconfig but i think * as is...

@AlgirdasPundzius It happens for me on Wireguard I noticed, but I'm not sure it happens everytime

@Rafficer "Proxy" is not necessarily a server which we have no control on, It can be Tor, or a ssh tunnel to our own server, etc. Clearly, the proxy is...

Same issue here: ``` "class-transformer": "^0.5.1", "class-validator": "^0.13.2", ``` I want to be able to have this input in my query params: :3000?sort={"name":1}&page=1&limit=20 ``` class SortDto { @IsNumber() @IsIn([1, -1])...

> validation and transformations work with class instances. > > try this > > ```ts > class Parent { > @ValidateNested() > @Type(() => Son) > @Transform(({ value }) =>...