npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

strapi-plugin-admin-2fa-by-email

v1.0.1

Published

Two-factor email authentication for Strapi 5 admin panel

Downloads

188

Readme

strapi-plugin-admin-2fa-by-email

Two-factor email authentication for Strapi 5 admin panel.

Screenshots

Dark theme

Dark theme

Light theme

Light theme

Features

  • Email-based two-factor authentication for admin login
  • OTP code generation and verification
  • Configurable code length, expiration time, and max attempts
  • Automatic dark/light theme detection
  • Localization support (English, Russian)
  • Works with any Strapi email provider (nodemailer, sendgrid, etc.)
  • Automatic cleanup of expired codes

Installation

npm install strapi-plugin-admin-2fa-by-email
# or
yarn add strapi-plugin-admin-2fa-by-email

Configuration

Add the plugin to your Strapi configuration in config/plugins.ts:

export default () => ({
  'admin-2fa-by-email': {
    enabled: true,
    config: {
      codeLength: 6,
      codeExpiration: 5, // minutes
      maxAttempts: 3,
      emailSubject: 'Your verification code',
    },
  },
});

Configuration Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | codeLength | number | 6 | Length of the OTP code | | codeExpiration | number | 5 | Code expiration time in minutes | | maxAttempts | number | 3 | Maximum verification attempts before code is invalidated | | emailSubject | string | 'Your verification code' | Subject line for the verification email |

Requirements

  • Strapi v5.0.0 or higher
  • A configured email provider in Strapi

How it works

  1. User enters email and password on the Strapi admin login page
  2. Plugin intercepts the login request and validates credentials
  3. If credentials are valid, a verification code is sent to the user's email
  4. User enters the code in the modal dialog
  5. If the code is correct, the user is logged in

License

MIT