GitXplorerGitXplorer
m

close-with-grace

public
203 stars
15 forks
1 issues

Commits

List of commits on branch main.
Verified
ebcd1b37cf8c26721eae24a08280876e83262f2c

Bumped v2.1.0

mmcollina committed a month ago
Verified
4713f424ebf6bb033c4d8baa92bd31e4f28b9ae2

feat: add more shutdown signals (#22)

SSadzurami committed a month ago
Verified
14b4e5f2675473df4d962225cee89016e7c63379

docs: fix events list (#20)

SSadzurami committed a month ago
Verified
865c7370d99ba27156c94c2a93dd544cceced70c

Bumped v2.0.0

mmcollina committed a month ago
Verified
aaed1714cd92b829d6db0f959c8e58862cff9d3f

Adde Node.js v20 and v22 to CI (#19)

mmcollina committed a month ago
Verified
bb1ff1a7768ed62df71d65d43362a67573465615

feat: fire callback even if process closing in normal way (#18)

SSadzurami committed a month ago

README

The README file for this repository.

close-with-grace

Exit your process, gracefully (if possible) - for Node.js

Install

npm i close-with-grace

Usage

const closeWithGrace = require('close-with-grace')

// delay is the number of milliseconds for the graceful close to
// finish.
closeWithGrace({ delay: 500 }, async function ({ signal, err, manual }) {
  if (err) {
    console.error(err)
  }
  await closeYourServer()
})

// default delay is 10000
// to disable delay feature at all, pass falsy value to delay option.
closeWithGrace({ delay: false }, () => await somethingUseful())

Injecting custom logger

const closeWithGrace = require('close-with-grace')

// delay is the number of milliseconds for the graceful close to
// finish.
closeWithGrace(
  {
    delay: 500,
    logger: { error: (m) => console.error(`[close-with-grace] ${m}`) }
  },
  async function ({ signal, err, manual }) {
  if (err) {
    console.error(err)
  }
  await closeYourServer()
})

// default logger is console
// to disable logging at all, pass falsy value to logger option.
closeWithGrace({ logger: false }, () => await somethingUseful())

Example with Fastify

import fastify from 'fastify'
import closeWithGrace from 'close-with-grace'

const app = fastify()

closeWithGrace(async function ({ signal, err, manual }) {
  if (err) {
    app.log.error({ err }, 'server closing with error')
  } else {
    app.log.info(`${signal} received, server closing`)
  }
  await app.close()
})

await app.listen()

API

closeWithGrace([opts], fn({ err, signal, manual }))

closeWithGrace adds a global listeners to the events:

  • process.once('SIGHUP')
  • process.once('SIGINT')
  • process.once('SIGQUIT')
  • process.once('SIGILL')
  • process.once('SIGTRAP')
  • process.once('SIGABRT')
  • process.once('SIGBUS')
  • process.once('SIGFPE')
  • process.once('SIGSEGV')
  • process.once('SIGUSR2')
  • process.once('SIGTERM')
  • process.once('uncaughtException')
  • process.once('unhandledRejection')
  • process.once('beforeExit')

In case one of them is emitted, it will call the given function. If it is emitted again, it will terminate the process abruptly.

opts

  • delay: the numbers of milliseconds before abruptly close the process. Default: 10000.

    • Pass false, null or undefined to disable this feature.
  • logger: instance of logger which will be used internally. Default: console.

    • Pass false, null or undefined to disable this feature.

fn({ err, signal, manual } [, cb])

Execute the given function to perform a graceful close. The function can either return a Promise or call the callback. If this function does not error, the process will be closed with exit code 0. If the function rejects with an Error, or call the callback with an Error as first argument, the process will be closed with exit code 1.

return values

Calling closeWithGrace() will return an object as formed:

  • close(): close the process, the manual argument will be set to true.
  • uninstall(): remove all global listeners.

License

MIT