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.
@relab/graceful-shutdown
Advanced tools
Tiny and stupid simple dependency-free Node.js library to shut down gracefully.
npm install --save @relab/graceful-shutdown
npm add @relab/graceful-shutdown
import { handleShutdown, onShutdown } from '@relab/graceful-shutdown'
// ...
onShutdown(async () => {
// clean up your resources here
})
// setup graceful shutdown
handleShutdown()
import { handleShutdown, onShutdown } from '@relab/graceful-shutdown'
// ...
// setup graceful shutdown
handleShutdown({
// 3000ms timeout to complete all shutdown tasks (default - 5000)
timeout: 3000
})
import { handleShutdown, onShutdown } from '@relab/graceful-shutdown'
// ...
handleShutdown({
onShutdownStart: () => {
console.log('Shut down requested')
},
onShutdownError: reason => {
console.log(`Shutdown tasks error: ${reason}`)
},
onShutdownComplete: () => {
console.log('Shutdown tasks completed')
},
})
Released under MIT by Sergey Zwezdin.
FAQs
Graceful shutdown for Node.js application
The npm package @relab/graceful-shutdown receives a total of 37 weekly downloads. As such, @relab/graceful-shutdown popularity was classified as not popular.
We found that @relab/graceful-shutdown demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.