How to use socket.io in aws lambda functions

I am using node js with aws lambda functions for my web application. I want to use a web socket in my web application. And socket.io is a very famous library for node.js.

But I'm not sure how to use it in aws lambda. can someone let me know how to do this, is it possible to use lambda functions?

+4
source share
2 answers

Cannot use socket.io with lambdas. Lambdas has a time limit that can be met, so it is not possible to open an open connection to a client.

, SNS. Lambdas SNS, lambdas SNS.

+2
0

Source: https://habr.com/ru/post/1663236/


All Articles