Socket
Socket
Sign inDemoInstall

before-exit

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    before-exit

Easily add listeners to signals sent to the running process


Version published
Maintainers
1
Install size
4.92 kB
Created

Readme

Source

Before exit...

Easily add listeners to signals sent to the running process

Install

npm install before-exit

Usage

const beforeExit = require('before-exit');

beforeExit.do(function (signal) {
  // will be called when the process receives SIGINT or SIGTERM
});

Signal hooks

The module listens automatically for SIGINT and SIGTERM on initialization.

Listeners

do(fn) adds a listener to the list of function to be called when a signal is received. fn will receive the signal name and can optionally return a promise to allow async exit operations to be completed before actually exiting the process.

Exit and exit code

Once all the listeners complete, the process exits with code 0 but if any listener fails, it will exit with code 1.

Notes

As the module expects Promise object to exist, it requires node version 4.0 or higher.

Keywords

FAQs

Last updated on 12 Apr 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc