Hi guys, thanks for the comments.
I have added some extra try / catch blocks around various logic. There isn’t much to my program, so hopefully that catches something. And added a process.on('uncaughtException') as that blog Giri suggested, so hopefully this next run turns up something.
Thanks Tamimi. My code does a fetch(url) .then(reponse => response.json) .then(json => { some code }); And the whole thing is wrapped in a try / catch block. So no specific error handling on the fetch like yours above, no await… you have two separate error handling checks. Wondering if I should add those?