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 🙏

© 2024 – Pkg Stats / Ryan Hefner

mailhog-awesome

v0.1.4

Published

NodeJS mailhog client library for email end-to-end testing, written in TypeScript.

Downloads

661

Readme

npm GitHub npm bundle size Snyk Vulnerabilities for npm package CircleCI (all branches)

:wave: Description

NodeJS client library for mailhog, based on the mailhog npm package. Mailhog is an excellent email testing tool for local development and automated end-to-end testing. While an HTTP API is offerend for implementing tests (e.g. "expect that the reset password email was retrieved"), it is very limited in its capabilities and is not well suited for writing tests. The mailhog-awesome package attempts to solve these issues by providing an API that enables developers to write simple and robust email tests.

The following functionality is provided:

  • Inbox system for isolated testing (needed to run tests in parallel)
  • Built-in retry logic for email retrieval
  • Comprehensive TypeScript typings

:running: Get Started

  mailhog = new MailhogClient({
    host: 'localhost',
    port: 8025,
  });

  const emails = await mailhog.getInbox('[email protected]');

A simple Jest example test-suite:

import { createTransport } from 'nodemailer';
import { MailhogClient } from './mailhog';

describe('Example Jest email test-suite', () => {
  let mailhog: MailhogClient;
  const host = 'mailhog';

  beforeAll(async () => {
    mailhog = new MailhogClient({
      host,
      port: 8025,
    });
  });

  it('Retrieve the "reset password" email', async () => {
    // Inbox email only used for this test
    const inbox = '[email protected]';

    // Clear the inbox before starting
    await mailhog.clearInbox(inbox);

    // Trigger the "reset password" email via your server's API
    const transport = createTransport({ host, port: 1025, secure: false });
    transport.sendMail({
      from: '[email protected]',
      to: inbox,
      subject: 'Reset your password',
      html: 'Please follow the link to reset your password.',
    });

    // Get the latest email
    const email = await mailhog.getLastEmail({
      from: '[email protected]',
      to: inbox,
      subject: 'Reset your password',
    });

    // Expect that a "reset password" email was received
    expect(email).toBeTruthy();

    // Clear inbox after the test has passed
    await mailhog.clearInbox(inbox);
  });
});

:wrench: API

getInbox(email: string): Promise‹Email[]›

Get all emails for an inbox of an email address

Parameters:

Name | Type | Description | ------ | ------ | ------ | email | string | email address |

Returns: Promise‹Email[]›


clearInbox(email: string): Promise‹true | MailhogError[]›

Clear the inbox of an email address

Parameters:

Name | Type | Description | ------ | ------ | ------ | email | string | email address |

Returns: Promise‹true | MailhogError[]›


getEmails(options: FindEmailOptions): Promise‹Email[]›

Get all emails given a set of find options

Parameters:

Name | Type | Description | ------ | ------ | ------ | options | FindEmailOptions | email find options |

Returns: Promise‹Email[]›


getAllEmails(): Promise‹Email[]›

Get all emails.

Returns: Promise‹Email[]›


getLastEmail(options: FindEmailOptions): Promise‹Email | undefined›

Get the most recent email given the provided find options.

Parameters:

Name | Type | Default | Description | ------ | ------ | ------ | ------ | options | FindEmailOptions | {} | Email find options |

Returns: Promise‹Email | undefined›


deleteEmail(id: string): Promise‹true | MailhogError›

Delete the email with the given ID.

Parameters:

Name | Type | Description | ------ | ------ | ------ | id | string | ID of the email |

Returns: Promise‹true | MailhogError›


deleteEmails(options: FindEmailOptions): Promise‹true | MailhogError[]›

Delete all emails matching the given find options

Parameters:

Name | Type | Description | ------ | ------ | ------ | options | FindEmailOptions | email find options |

Returns: Promise‹true | MailhogError[]›


deleteAllEmails(): Promise‹true | MailhogError[]›

Delete all emails.

Returns: Promise‹true | MailhogError[]›


releaseEmail(id: string, config: ReleaseSmtpConfig): Promise‹true | MailhogError›

Releases the mail with the given ID using the provided SMTP config.

Parameters:

Name | Type | Description | ------ | ------ | ------ | id | string | message ID | config | ReleaseSmtpConfig | SMTP configuration |

Returns: Promise‹true | MailhogError›


releaseEmails(config: ReleaseSmtpConfig, options: FindEmailOptions): Promise‹true | MailhogError[]›

Release all emails that match the given find options using the provided SMTP config.

Parameters:

Name | Type | Description | ------ | ------ | ------ | config | ReleaseSmtpConfig | SMTP configuration | options | FindEmailOptions | Email find options |

Returns: Promise‹true | MailhogError[]›


releaseAllEmails(config: ReleaseSmtpConfig): Promise‹true | MailhogError[]›

Release all emails using the provided SMTP config.

Parameters:

Name | Type | Description | ------ | ------ | ------ | config | ReleaseSmtpConfig | SMTP configuration |

Returns: Promise‹true | MailhogError[]›


encode(str: string, encoding: string, charset?: string, lineLength?: number): string

Encodes a String in the given charset to base64 or quoted-printable encoding.

Parameters:

Name | Type | Description | ------ | ------ | ------ | str | string | String to encode | encoding | string | base64/quoted-printable | charset? | string | Charset of the input string (default: 'utf8') | lineLength? | number | Soft line break limit (default: 76) |

Returns: string


decode(str: string, encoding: string, charset?: string): string

Decodes a String from the given encoding and outputs it in the given charset.

Parameters:

Name | Type | Description | ------ | ------ | ------ | str | string | String to decode | encoding | string | base64/quoted-printable | charset? | string | Charset to use for the output (default: 'utf8') |

Returns: string


extractUrls(str: string): string[]

Extract all URLs from a string

Parameters:

Name | Type | Description | ------ | ------ | ------ | str | string | string to extract all URLs from |

Returns: string[]

:rotating_light: Known Issues

  • The "bcc" field is not retrieved by mailhog.
  • Not optimized for performance on large sets of emails: Due to the limited functionality offered by the mailhog web API, the mailhog-awesome package has to perform operations that have a sub-optimal runtime complexity, which will be noticeable for larger amounts of emails. As the primary focus of this package is the implementation of end-to-end email tests, this can be easily avoided by properly isolating test suites and clearing the inbox after a test has finished.

:pray: Contributing

You are welcome to contribute to the mailhog-awesome GitHub repository! All infos can be found here: How to contribute

:book: License

Mailhog-awesome is MIT licensed.