Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Custom JS error creator that subclasses Error
, sets .name
.stack
and .message
, and provides simple interpolation to construct error messages.
var zerr = require('zerr')
// first param: error name
// second param: string template for error messages (substitutes '%' with args in constructor)
var BadParam = zerr('BadParam', '% must be a %')
// using the created error:
try { throw new BadParam('foo', 'string') }
catch (e) {
console.log(e.name) // => 'BadParamError'
console.log(e.message) // => 'foo must be a string'
console.log(e.stack) // => 'BadParamError: foo must be a string\nat repl:1:13...'
console.log(e instanceof Error) // => true
console.log(e instanceof BadParam) // => true
}
// the `new` is optional
throw BadParam('foo', 'string')
// if no string template is given, zerr will just use the constructor's param as the message
var BadParam = zerr('BadParam')
try { throw new BadParam('foo is bad') }
catch (e) {
console.log(e.message) // => 'foo is bad'
}
// if you pass an error as the first param to the constructor, zerr will add its stack to the stack history
// (taken from https://github.com/dominictarr/explain-error)
try { throw new BadParam(new BadParam('earlier foo was bad'), 'foo is bad') }
catch (e) {
console.log(e.stack) /* =>
BadPararmError: foo is bad
at repl:1:7
BadPararmError: earlier foo was bad
at repl:1:15
*/
}
FAQs
custom error construction
The npm package zerr receives a total of 4 weekly downloads. As such, zerr popularity was classified as not popular.
We found that zerr 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.