
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
verifiablejs
Advanced tools
This package provides JavaScript/TypeScript bindings for the Parity Verifiable crate.
npm install verifiablejs
import init, { one_shot, validate, sign, verify_signature, member_from_entropy } from 'verifiablejs/bundler';
// Initialize the WASM module
await init();
// Generate a proof
const entropy = new Uint8Array(32); // Your entropy bytes
const members = new Uint8Array(...); // Your encoded members list
const context = new TextEncoder().encode("my-context");
const message = new TextEncoder().encode("my-message");
const result = one_shot(entropy, members, context, message);
const { proof, alias, member } = result;
// Validate a proof
const validatedAlias = validate(proof, members, context, message);
// Sign a message
const signature = sign(entropy, message);
// Verify a signature
const isValid = verify_signature(signature, message, member);
import init, { one_shot, validate, sign, verify_signature, member_from_entropy } from 'verifiablejs/nodejs';
// Initialize the WASM module
await init();
// Use the same API as above
npm run build
This builds both bundler and Node.js targets:
wasm-pack build --release --target bundler --features small-ringwasm-pack build --release --target nodejs --features small-ringnpm test
This will run both Rust and WASM tests:
cargo test --features "small-ring"wasm-pack test --node --features small-ringThis project uses Changesets for version management.
pnpm changeset (select bump type: patch/minor/major)pnpm version (consumes changesets, updates package.json and CHANGELOG.md)pnpm release (builds and publishes to npm)Licensed under GPL-3.0-or-later WITH Classpath-exception-2.0
FAQs
WebAssembly bindings for the Parity `verifiable` crate
The npm package verifiablejs receives a total of 3,102 weekly downloads. As such, verifiablejs popularity was classified as popular.
We found that verifiablejs demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.