+1 vote
in NodeJS Essentials by

When are background/worker processes useful? How can you handle worker tasks?

1 Answer

0 votes
by

Worker processes are extremely useful if you'd like to do data processing in the background, like sending out emails or processing images.

There are lots of options for this like RabbitMQ or Kafka.

...