
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@tfso/extended-error
Advanced tools
ExtendedError
makes it easier to create Error
with custom properties
npm install @tfso/extended-error
const ExtendedError = require('extended-error')
let error = new ExtendedError('Not found', {status:404})
console.log(error.message) // Not found
console.log(error.status) // 404
console.log(error instanceof Error) // true
console.log(error instanceof ExtendedError) // true
console.log(error.stack) // 'Error: Not found\n at repl:1:9\n ...
This:
throw new ExtendedError('Not found', {status:404})
is equivalent to:
let error = new Error('Not found')
error.status = 400
throw error
https://gist.github.com/slavafomin/b164e3e710a6fc9352c934b9073e7216
FAQs
An Extended Error class that support custom properties
We found that @tfso/extended-error demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.