@nestjs-architects/typed-cqrs
v2.1.0
Published
Enhance the @nestjs/cqrs building blocks with auto-inferring types.
Downloads
28,507
Readme
@nestjs-architects/typed-cqrs
Tired of hand-typing types for NestJS CQRS package? We got you covered!
Usage
First install base @nestjs/cqrs package.
$ npm i @nestjs/cqrsAll you need to do, is to extend your query with type of expected response.
import { Query } from '@nestjs-architects/typed-cqrs';
export class GetProfileQuery extends Query<ResultType> {}Profit
Now, when implementing handler, you get all type completion & safety!

import { IInferredQueryHandler, QueryHandler } from '@nestjs/cqrs';
@QueryHandler(GetProfileQuery)
export class GetProfileHandler implements IInferredQueryHandler<GetProfileQuery> {}As well as, results are correctly typed as well!

Development - verify if package works
After running npm run build, run npm link from the root directory to have it visible as globally installed package.
Next, in the project you want to use it, within its root directory, run npm link @nestjs-architects/typed-cqrs
