Open anwesh-b opened 1 year ago
up upgrade
-v, --verbose
I have an express application wrapped by up. I have following code:
up
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, --verbose
flag.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
up
proxy, not the express application.Is there any way to make the signal reach the application code as well?