最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Use socket client with NestJs microservice - Stack Overflow

programmeradmin1浏览0评论

I started working with NestJs recently and got stock while trying to test my NestJs microservices app using a TCP client

Is it possible to trigger an @EventPattern or @MessagePattern() using a non-nest app?

When trying this method the the socket client just stuck on trying to connect.

Any ideas?

Thanks.

I started working with NestJs recently and got stock while trying to test my NestJs microservices app using a TCP client

Is it possible to trigger an @EventPattern or @MessagePattern() using a non-nest app?

When trying this method the the socket client just stuck on trying to connect.

Any ideas?

Thanks.

Share Improve this question edited Apr 11, 2019 at 10:30 Kim Kern 60.7k20 gold badges218 silver badges214 bronze badges asked Apr 11, 2019 at 8:35 DanielDaniel 2,5311 gold badge15 silver badges25 bronze badges 1
  • Yes, it is possible to connect a nest app to a non-nest client but you have to pay attention to the special handling of nest, see this answer: stackoverflow./a/54294325/4694994 It's hard to tell what the connection issue is without seeing your setup. Can you post the relevant parts of your code? – Kim Kern Commented Apr 11, 2019 at 9:52
Add a ment  | 

1 Answer 1

Reset to default 12

Update Feb 2020

Since nest v6.6.0, it has bee easier to integrate external services with a message de/serializer.
Have a look at the corresponding PR.


Original Answer

You have to set up the ports correctly to use it with nest:

The pattern you want to send is

<json-length>#{"pattern": <pattern-name>, "data": <your-data>[, "id": <message-id>]}

Example:

76#{"pattern":"sum","data":[0,3,3],"id":"ce51ebd3-32b1-4ae6-b7ef-e018126c4cc4"}

The parameter id is for @MessagePattern, without it @EventPattern will be triggered.

In your main.ts you setup the nest server. That's the port you want to send to from Packet Sender (enter at 1).

const app = await NestFactory.createMicroservice(AppModule, {
  transport: Transport.TCP,
  options: { host: 'localhost', port: 3005 },
  //                            ^^^^^^^^^^
});

Then you want your nest @Client to listen to messages ing from Packet Sender (see position 2 in image)

@Client({
  transport: Transport.TCP,
  options: { host: 'localhost', port: 52079 },
  //                            ^^^^^^^^^^^  
})
private client: ClientTCP;

Then connect your client:

async onModuleInit() {
  await this.client.connect();
}

and define a @MessagePattern:

@MessagePattern('sum')
sum(data: number[]): number {
  console.log(data);
  return data.reduce((a, b) => a + b, 0);
}

As you can see, in the example I'm sending [0,3,3] and nest correctly responds with the sum 6.

发布评论

评论列表(0)

  1. 暂无评论