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

company-email-better-auth

v0.1.10

Published

Company email better auth

Readme

Company Email Better Auth

npm version License: MIT

A robust TypeScript library for handling company email verification processes with flexible configuration options.


Features

  • 🕒 Configurable token expiration
  • � Automatic token cleanup
  • 📧 Email allowlist support
  • 🔒 Custom token generation
  • 🍪 Cookie storage options
  • 📤 Flexible email sending implementation

Installation

npm install company-email-verification
yarn add company-email-verification
bun add company-email-verification
pnpm add company-email-verification

Quick Start

import { betterAuth } from "better-auth";
import { companyEmail } from "company-email-better-auth";
import { sendEmail } from "../email/email.service";

export const auth = betterAuth({
  plugins: [
    companyEmail({
      expiresIn: 60 * 60, // 1 hour expiration
      allowedEmails: ["[email protected]", "[email protected]"],
      async sendEmailVerification({ email, url, token }) {
        await sendEmail("companyEmailVerification", { to: email, url, token });
      },
    }),
  ],
});

Usage

Sending a Verification Email

await auth.api.sendCompanyEmailVerification({
  body: {
    email,
    callbackUrl: `${env.APP_ORIGIN}/verify-email?email=${email}`,
  },
});

Verifying a Token

await auth.api.verifyCompanyEmailVerification({
  query: {
    token,
  },
});

Client Plugin Usage

import { createAuthClient } from "better-auth/client";
import { companyEmailClient } from "company-email-better-auth";

export const client = createAuthClient({
  plugins: [companyEmailClient()],
});

Configuration Options

CompanyEmailOptions

interface CompanyEmailOptions {
  /** Token expiration time in seconds (default: 86400 [1 day]) */
  expiresIn?: number;
  /** Disable automatic token cleanup (default: false) */
  disableCleanup?: boolean;
  /** Array of allowed email domains/addresses (default: []) */
  allowedEmails?: string[];
  /** Custom token generator function (default: 32-character random string) */
  generateToken?: () => Promise<string> | string;
  /** Cookie storage configuration */
  storeCookieAfterVerification?: {
    enabled: boolean;
    cookieName?: string;
    expires?: number;
  };
  /** Required email sending implementation */
  sendEmailVerification: (options: {
    email: string;
    url: string;
    token: string;
  }) => Promise<void>;
}

Advanced Usage

Email Allowlist

allowedEmails: ["@ourcompany.com", "[email protected]"];

Custom Token Generation

generateToken: async () => crypto.randomBytes(16).toString("hex");

Cookie Storage

storeCookieAfterVerification: {
  enabled: true,
  cookieName: 'company-verify',
  expires: 3600 // 1 hour
}

Verification Workflow

  1. User provides email address
  2. System checks against allowedEmails list
  3. Verification token is generated
  4. Verification email is sent with URL
  5. User clicks link to validate token
  6. Optional cookie storage upon success
  7. Automatic token cleanup (unless disabled)

Security Considerations

  • Always use HTTPS in production
  • Store tokens securely
  • Set appropriate cookie security flags
  • Regularly rotate secrets
  • Implement rate limiting