Prerequisites
Description
I have an express application wrapped by up.
I have following code:
process.on('SIGINT', () => {
// Do some actions
});
As far as I know, the up is triggered once request reaches lambda.
And any SIGINT signal received, reaches the up proxy, not the express application.
Is there any way to make the signal reach the application code as well?
Prerequisites
up upgrade)-v, --verboseflag.Description
I have an express application wrapped by
up.I have following code:
As far as I know, the up is triggered once request reaches lambda.
And any SIGINT signal received, reaches the
upproxy, not the express application.Is there any way to make the signal reach the application code as well?