Ensuring healthy Node.js program using watchdog timer

added by JavaScript Kicks
11/12/2019 1:00:35 PM

407 Views

If you have a Node.js program that is designed to pull tasks and process them asynchronously, then you should watch out for hanging processes. Consider an example of how such a program could look: import delay from 'delay'; const getNextJob = async () => { /* ...


0 comments