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.
health-checkup
Advanced tools
One function to check the health status of all your app modules.
npm install health-checkup
Set up health checks that should be performed during a checkup later on
const Health = require('health-checkup')
class MyService {
constructor () {
this._status = 'ok'
Health.addCheck('my-service', () => {
return Promise.try(() => {
if (this._status !== 'ok') {
throw new Error(`My Service status is ${this._status}`)
}
})
})
}
}
Perform a checkup and retrieve health report
Health.checkup()
.then((report) => console.log(report))
You can contribute either with code (e.g., new features, bug fixes and documentation) or by donating 5 EUR. You can read the contributing guidelines for instructions on how to contribute with code.
All donation proceedings will go to the Sverige för UNHCR, a swedish partner of the UNHCR - The UN Refugee Agency, a global organisation dedicated to saving lives, protecting rights and building a better future for refugees, forcibly displaced communities and stateless people.
Read the license for permissions and limitations.
FAQs
A health check facility to check the status of your modules
The npm package health-checkup receives a total of 11 weekly downloads. As such, health-checkup popularity was classified as not popular.
We found that health-checkup demonstrated a not healthy version release cadence and project activity because the last version was released 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.