user3094331
user3094331

Reputation: 554

How to send multiple response using node js

How to send multiple responses to client using node.js want to know how to send immediate response to client and continue the request

Upvotes: 2

Views: 2306

Answers (1)

lyjackal
lyjackal

Reputation: 3984

Normal HTTP can only deliver one response per request. Consider sending it all at once or look into push technologies such as WebSockets socket.io

Upvotes: 2

Related Questions