2

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

user3094331
  • 532
  • 6
  • 21

1 Answers1

2

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

lyjackal
  • 3,984
  • 1
  • 12
  • 25