@nestjs-architects/typed-cqrs
TypeScript icon, indicating that this package has built-in type declarations

1.1.2-alpha.0 • Public • Published

@nestjs-architects/typed-cqrs

version downloads

Tired of hand-typing types for NestJS CQRS package? We got you covered!

Usage

First install base @nestjs/cqrs package.

$ npm i @nestjs/cqrs

All 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!

showcase-handler

import { IInferredQueryHandler, QueryHandler } from '@nestjs/cqrs';

@QueryHandler(GetProfileQuery)
export class GetProfileHandler implements IInferredQueryHandler<GetProfileQuery> {}

As well as, results are correctly typed as well! showcase-handler

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

Readme

Keywords

Package Sidebar

Install

npm i @nestjs-architects/typed-cqrs

Weekly Downloads

9,892

Version

1.1.2-alpha.0

License

MIT

Unpacked Size

5.74 kB

Total Files

8

Last publish

Collaborators

  • sikora00