Doing a cleanup action just before Node.js exits

后端 未结 11 1364
时光说笑
时光说笑 2020-11-22 13:54

I want to tell Node.js to always do something just before it exits, for whatever reason — Ctrl+C, an exception, or any other reason.

I tried th

11条回答
  •  无人及你
    2020-11-22 14:27

    Here's a nice hack for windows

    process.on('exit', async () => {
        require('fs').writeFileSync('./tmp.js', 'crash', 'utf-8')
    });
    

提交回复
热议问题