I have a simple nodejs application like
...
function checkTermination () {
console.log('start closing ...');
...
}
process.on('SIGTERM', checkTermination);
process.on('SIGINT', checkTermination);
I'm debugging it with Visual Studio Code.
Is there an opportunity to send some signals like SIGINT, SIGTERM to the application with "Visual Studio Code" ? How can I do this?
