
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
explain-error
Advanced tools
wrap errors in explainations.
In node sometimes something fails because of some internal detail, but then this error may be passed back somewhere else, too often, context is lost.
var explain = require('explain-error')
//stat a file that does not exist. this will error, add an explaination.
function explainedError(cb) {
require('fs').stat('neoatuhrcoahkrcophkr', function (err) {
if(err) cb(explain(err, 'asked for a file that certainly did not exist'))
else cb()
})
}
//show that this works even with multiple layers of explainations.
explainedError(function (err) {
throw explain(err, 'called an function that was expected to fail')
})
output:
fs.stat
does not show where it was called from,
but at least now you know what happened after that.
Error: called an function that was expected to fail
at /home/dominic/c/explain-error/example.js:11:9
at /home/dominic/c/explain-error/example.js:5:13
Error: asked for a file that certainly did not exist
at /home/dominic/c/explain-error/example.js:5:16
at Object.oncomplete (fs.js:107:15)
Error: ENOENT, stat neoatuhrcoahkrcophkr
of course, this adds lines to your errors that will do not look like normal js errors. will this break all your tools? if so please post an issue.
MIT
FAQs
wrap errors in explainations.
The npm package explain-error receives a total of 10,026 weekly downloads. As such, explain-error popularity was classified as popular.
We found that explain-error 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.