文件名称:exit-hook:进程退出时运行一些代码
文件大小:6KB
文件格式:ZIP
更新时间:2024-05-28 05:08:07
JavaScript
出口钩 进程退出时运行一些代码 process.on('exit')事件无法捕获进程可以退出的所有方式。 该包装对于退出前的清理很有用。 安装 $ npm install exit-hook 用法 const exitHook = require ( 'exit-hook' ) ; exitHook ( ( ) => { console . log ( 'Exiting' ) ; } ) ; // You can add multiple hooks, even across files exitHook ( ( ) => { console . log ( 'Exiting 2' ) ; } ) ; throw new Error ( ':unicorn:' ) ; //=> 'Exiting' //=> 'Exiting 2' 卸下出口挂钩: const exitHook = require
【文件预览】:
exit-hook-main
----.gitignore(23B)
----.github()
--------security.md(179B)
--------workflows()
--------funding.yml(115B)
----fixture.js(274B)
----.gitattributes(19B)
----package.json(749B)
----index.test-d.ts(167B)
----readme.md(1KB)
----index.js(1006B)
----index.d.ts(728B)
----test.js(683B)
----.editorconfig(175B)
----license(1KB)
----.npmrc(19B)