NodeJS module to gracefully shutdown an application
The shutdown-cleanup
module provides a structured approach for managing graceful shutdowns in Node.js applications. It supports phased shutdowns, signal-specific handlers, customizable error handling strategies, and custom exit codes, ensuring broad compatibility with LTS Node.js versions.
npm install @hypercliq/shutdown-cleanup
Or using Yarn:
yarn add @hypercliq/shutdown-cleanup
To use shutdown-cleanup
, import and utilize its functions within your application to manage shutdown logic effectively.
import { registerHandler } from '@hypercliq/shutdown-cleanup'
registerHandler(async (signal) => {
await performCleanup()
console.log('Cleanup completed')
})
For more detailed usage examples and best practices, see the Developer Guide.
We encourage contributions! If you have suggestions, bug reports, or would like to contribute code, please submit issues or pull requests on GitHub. For major changes, start by opening an issue to discuss your ideas.
Thank you for using and contributing to the shutdown-cleanup
module!
Remember to add tests for your changes and ensure that all tests pass before submitting a pull request. Also lint and format your code according to the project’s standards.
This project is licensed under the MIT License - see the LICENSE file for details.