
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@bhattishani/mfa-kit
Advanced tools
A flexible Multi-Factor Authentication kit for Next.js, Express, and Cloudflare applications
A flexible Multi-Factor Authentication kit for Next.js, Express, and Cloudflare applications. This package provides a unified API for implementing various authentication factors including TOTP, OTP, PIN, and Passkeys (WebAuthn).
Using pnpm:
pnpm add @bhattishani/mfa-kit
import { createMFAKit } from "@bhattishani/mfa-kit";
import { NextjsAdapter } from "@bhattishani/mfa-kit/adapters/nextjs";
const mfa = createMFAKit({
adapter: new NextjsAdapter(),
// ... your configuration
});
import { createMFAKit } from "@bhattishani/mfa-kit";
import { ExpressAdapter } from "@bhattishani/mfa-kit/adapters/express";
const mfa = createMFAKit({
adapter: new ExpressAdapter(),
// ... your configuration
});
import { createMFAKit } from "@bhattishani/mfa-kit";
import { CloudflareAdapter } from "@bhattishani/mfa-kit/adapters/cloudflare";
const mfa = createMFAKit({
adapter: new CloudflareAdapter(),
// ... your configuration
});
For detailed documentation and examples, please visit our documentation site.
ISC
FAQs
A flexible Multi-Factor Authentication kit for Next.js, Express, and Cloudflare applications
We found that @bhattishani/mfa-kit 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.