Socket
Socket
Sign inDemoInstall

gracy

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gracy

Execute custom cleanup function before Node.js exits


Version published
Maintainers
1
Created
Source

gracy

CI status license npm version

Gracy is a zero-dependency library that provides a simple way to execute custom function before a Node.js process exits. It helps you ensure that your applications perform cleanup tasks, gracefully close resources, and maintain data integrity during (un)expected shutdowns or terminations.

Installation

pnpm i -E gracy

Usage

import { onExit } from 'gracy'

onExit(
    async () => {
        closeHttpServer()
        await closeDatabaseConnection()
    },
    { logger: pinoInstance }
)

Configuration

The onExit function accepts an configuration object as its second argument. The following options are available:

NameDefault valueDescription
loggerconsoleLogger to use. You should use libraries for structured logging such as pino. Set to false to disable logging.
logLevel'info'Log level to use. Valid options are 'debug', 'info', 'error'.
logPrefix'[gracy] 'Prefix to use for log messages. Set to empty string to disable prefixing.
timeout10_000Timeout (in milliseconds) to wait for the function to finish. If the function does not finish in time, the process will exit with code 1.
events['uncaughtException', 'unhandledRejection']Events to listen to. Triggering these events will cause the process to exit with code 1.
signals['SIGTERM', 'SIGINT']Signals to listen to. Triggering these signals will cause the process to exit with code 0.

License

MIT

Keywords

FAQs

Package last updated on 18 Jan 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc