Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@hypercliq/shutdown-cleanup
Advanced tools
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. Both synchronous and asynchronous handlers are supported.
import { registerHandler } from '@hypercliq/shutdown-cleanup'
// Asynchronous handler
registerHandler(async (signal) => {
await performCleanup()
console.log('Async cleanup completed')
})
// Synchronous handler
registerHandler((signal) => {
performSyncCleanup()
console.log('Sync 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.
FAQs
Module to handle graceful shutdowns
We found that @hypercliq/shutdown-cleanup demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.