
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.
node-argon2
Advanced tools
Password Hashing Using NodeJS' Built-in Argon2 Implementation.
Support for
crypto.argon2was implemented in NodeJS 24.7.0, make sure you have the same or later version.
npm i node-argon2
import { hash, verify } from 'node-argon2';
const password = 'correct-horse-battery-staple';
const passwordHash = await hash(password);
console.log(await verify({ password, hash: passwordHash })); // true
The default algorithm is argon2id with parameters memory=9216,
iterations=4, parallelism=1. You can change these by passing
them as parameters to hash():
const passwordhash = await hash(
password,
{
memory: 19_456,
iterations: 2,
parallelism: 1,
},
'argon2d',
);
The package is also fully compatible with better-auth:
import { betterAuth } from 'better-auth';
import * as password from 'node-argon2';
export const auth = betterAuth({
// ...rest of the options
emailAndPassword: {
password,
},
});
FAQs
Password Hashing Using NodeJS' Built-in Argon2 Implementation
We found that node-argon2 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.