npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

handle-quit

v2.0.0

Published

Support graceful stop in your app

Downloads

6

Readme

handle-quit Build status for Handle Quit

Support graceful stop in your app

Respond to shutdown signals, so a process manager can reload your app without dropping any connections.

Why?

  • Friendly to your users.
  • Easy to use and reason about.
  • Helps you do easy zero downtime deployments.

Install

npm install handle-quit --save

Usage

Get it into your program.

const handleQuit = require('handle-quit');

Make sure your program shuts down gracefully or quickly, as necessary.

handleQuit(() => {
    server.close();
});

Note that calling process.exit() is discouraged. Instead, you should close any server and database connections and let Node exit on its own, which it does automatically when it has no more work left to do.

If you are worried about the process hanging and never cleanly exiting, you are encouraged to use your framework's stop timeout.

Use with PM2

To achieve zero downtime deployments, PM2 needs to shutdown your app without dropping any connections. It sends a SIGINT signal to trigger the shutdown process. However, by default, Node reacts to this by exiting immediately, and thus in-progress connections may be dropped.

These problems can be fixed by using handleQuit() in the main entry of your CLI or server, as shown above, to override the default SIGINT behavior and deny new connections on the first SIGINT, while allowing any in-progress connections to finish. This is known as graceful stop.

PM2 waits for apps that gracefully stop to quit before replacing them with a new deployment when using pm2 reload.

$ pm2 start app.js --kill-timeout 6000

Just in case something goes wrong, --kill-timeout tells PM2 how long it should wait for the process to exit before considering the process hung / frozen, in which case it will force kill the process. You should ensure that --kill-timeout is greater than or equal to any stop timeouts used in your app.

To support graceful start, see app-ready.

API

handleQuit(listener)

Listens for POSIX signals (SIGINTand SIGTERM) and calls the listener function on the first signal to perform a graceful shutdown. Calls process.exit() with an appropriate error code on any further signals that are received to perform an ungraceful shutdown. Relevant messages are also printed to the console.

listener

Type: function

A function that will gracefully shutdown your program. A common example is Server#close().

Related

Contributing

See our contributing guidelines for more details.

  1. Fork it.
  2. Make a feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request.

License

MPL-2.0 © Seth Holladay

Go make something, dang it.