Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Assertion library to allow one to throw custom errors.
avow
uses ES2015 Proxies to intercept calls to assert
.
All methods of assert
are available, and it is compatible with both
Node.js
's standard assertion library and the one on npm
.
To allow assert
to throw custom errors.
assert
encapsulates Custom Errors under an AssertionError, which sucksconst assert = require('assert')
assert(false, Error('yohoo')
{ AssertionError: Error: yohoo
at Object.<anonymous> (/tmp/a/index.js:2:1)
name: 'AssertionError',
actual: false,
expected: true,
operator: '==',
message:
Error: yohoo
at Object.<anonymous> (/tmp/a/index.js:2:15)
generatedMessage: false }
Stack-trace trimmed for readability.
avow
throws Custom Errors properly, which is niceconst avow = require('avow')
avow(false, Error('yohoo'))
Error: yohoo
at Object.<anonymous> (/tmp/a/index.js:2:16)
Stack-trace trimmed for readability.
Make sure assert
is installed.
The npm
library assert
is not a dependency
in package.json
in order to
allow one to use Node.js
's standard assert
library.
FAQs
DEPRECATED: Use @invisible/assert
The npm package avow receives a total of 15 weekly downloads. As such, avow popularity was classified as not popular.
We found that avow demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.