You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom AMQP strategies for Nest microservice transport.
9
-
Supports :
8
+
A custom AMQP strategy for Nest microservice transport, which extends NestJS AMQP [producer](https://github.com/nestjs/nest/blob/master/packages/microservices/client/client-rmq.ts) and [consumer](https://github.com/nestjs/nest/blob/master/packages/microservices/server/server-rmq.ts) by adding support for:
10
9
11
10
- exchanges
12
-
- assert reply queue
11
+
- reply queue assertion
12
+
13
+
By enabling exchanges you can broadcast messages to multiple queues, and by asserting reply queue you can ensure that reply queue with static name exists.
14
+
15
+
## Example
16
+
17
+
The integration tests contain an [example consumer](./test/dummy-consumer.controller.mock.ts) and [example producer](./test/dummy-producer.service.mock.ts) that demonstrate how to use this library.
The Fastify Upload Service provides file upload support for NestJS applications using the Fastify adapter.
8
+
This library provides file upload support for NestJS applications using the Fastify adapter.
9
9
It uses the [@fastify/multipart](https://www.npmjs.com/package/@fastify/multipart) module.
10
10
11
-
The [nestjs-tools-file-storage](../file-storage/README.md) library can store the uploaded files in various storage backends.
11
+
It can be used in combintation of the [nestjs-tools-file-storage](../file-storage/README.md) library to store the uploaded files in various storage backends.
12
12
13
13
Read [this issue](https://github.com/getlarge/nestjs-tools/issues/71) to understand why this library was created.
0 commit comments