-
## Bug Report
## Current behavior
When I define app.useGlobalPipes it doesn't apply to WebSocketGateway
## Input Code
main.ts
```ts
app.useGlobalPipes(new ValidationPipe({
transform: t…
-
## Bug Report
## Current behavior
Method `server.emit` on WsAdapter returns false and does not send any data to the WebSocket, but method `client.send`
## Input Code
main.ts:
```ts
import …
-
Firstly, wow this project looks super interesting!
I ran into a snag spinning up each service as suggested in the docs:
```bash
NODE_ENV=staging npx nest start service-auth
```
Each servic…
av8ta updated
4 years ago
-
I can't install this library on an enterprise project because of the preinstall script checking for yarn, and we can't use yarn on our CI workflows. Can that hook be dropped or is there a specific rea…
-
**Hi there! I love the way Nestjs bring us Typescript in Nodejs , it very easy and also well documented**
Right now I'm building a REST API for a chat app, Http side is almost done, authentication t…
-
Socket Gateway in nestjs uses socket.io and socket.io is built on [engine.io](https://github.com/socketio/engine.io) and If you check the code of [server.js](https://github.com/socketio/engine.io/blob…
-
## Feature Request
1. Automatically throw unhandled exceptions in handlers of WebSocketGateway;
2. Add a strategy to attach global exception handlers for websockets;
## Is your feature request re…
-
## Bug Report
## Current Behaviour
I have created a websocket gateway (child.ts) that extends an abstract class (parent.ts). When the same event, e.g. ```@SubscribeMessage('test1')``` is in both t…
-
Hi together,
I just want to pass a parameter to my middleware and found this article https://github.com/nestjs/nest/issues/3
While trying to use the with-property on that described way:
```
…
-
Hi, Would you kindly provide a small example on how to set up a `microservice` and a `gateway` (consumer) that receives API requests?
Do I have to configure my `microservice` and start it, and then…