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 🙏

© 2025 – Pkg Stats / Ryan Hefner

email-typo-fixer

v1.1.0

Published

A TypeScript library that fixes common email typos and formatting issues

Readme

📧 email-typo-fixer

A TypeScript library that fixes common email typos and formatting issues. It handles various advanced scenarios like Outlook-style emails, special characters, multiple @ symbols, and more.

🌟 Features

  • Fixes common email typos and formatting issues
  • Handles Outlook-style emails (e.g., "Name [email protected]")
  • Handle common prefixes like "mailto:"
  • Handles repeated domains (e.g., "[email protected]@gmail.com")
  • Removes invalid special characters while preserving valid ones
  • Preserves valid email characters (including +, _, -, .)
  • Case-sensitive local part, lowercase domain
  • No external dependencies
  • Lightweight: ~2.4KB minified (ESM/CJS)

Installation

npm install email-typo-fixer
# or
yarn add email-typo-fixer
# or
pnpm add email-typo-fixer
# or
bun add email-typo-fixer

🚀 Usage

import { emailTypoFixer, DEFAULT_DOMAINS } from 'email-typo-fixer';

// Basic usage (using default domains)
const result = emailTypoFixer('[email protected]');
console.log(result); 
// Output:
// {
//   original: '[email protected]',
//   suggested: '[email protected]',
//   hasCorrection: true
// }

// Outlook-style email
const result2 = emailTypoFixer('John Doe <john.doe@@gmail.com>');
console.log(result2.suggested); // '[email protected]'

// With custom domains (overriding defaults)
const result3 = emailTypoFixer('[email protected]', {
  domains: ['company.internal', 'corp.example.com']
});
console.log(result3.suggested); // '[email protected]'

// Combining default domains with custom domains
const result4 = emailTypoFixer('[email protected]', {
  domains: [...DEFAULT_DOMAINS, 'company.com']
});
console.log(result4.suggested); // '[email protected]'

📘 API

emailTypoFixer(email: string, opts?: EmailTypoFixerOptions): EmailTypoFixerResult

Parameters

  • email: The email address to fix
  • opts (optional): Configuration options
    • domains: Array of valid domains to use for corrections. Defaults to:
      [
        "gmail.com",
        "yahoo.com",
        "hotmail.com",
        "outlook.com",
        "icloud.com",
        "aol.com"
      ]
    • domainMatchDistance: Maximum allowed distance for domain corrections (default: 3). Lower values are more strict:
      // More strict (only minor typos)
      emailTypoFixer('[email protected]', { domainMatchDistance: 2 }); // No correction
      
      // Default behavior
      emailTypoFixer('[email protected]', { domainMatchDistance: 3 }); // Suggests: [email protected]
          
      // More lenient
      emailTypoFixer('[email protected]', { domainMatchDistance: 5 }); // Suggests: [email protected]

Returns

interface EmailTypoFixerResult {
  original: string;               // Original input
  suggested: string | undefined;  // Corrected email (if changes were made)
  hasCorrection: boolean;         // Whether any corrections were made
}

📝 Examples of Fixes

Here are some common fixes the library handles:

For a comprehensive list of examples and edge cases, check out our test file

❤️ Acknowledgments

This project builds upon ideas from:

📄 License

MIT

🤝 Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.