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

mailtesterninja

v1.1.1

Published

[![NPM Version](https://img.shields.io/npm/v/mailtesterninja.svg)](https://www.npmjs.com/package/mailtesterninja) [![License](https://img.shields.io/npm/l/mailtesterninja.svg)](https://www.npmjs.com/package/mailtesterninja) [![Build Status](https://img.

Downloads

35

Readme

MailTester Ninja - Email Verification Node.js Library

NPM Version License Build Status

Overview

MailTester Ninja is a powerful Node.js library designed to interact with the MailTester Ninja email verification API. It allows developers to easily verify and validate email addresses within their applications, ensuring accurate and clean email lists.

Features

  • Real-time Email Verification: Verify email addresses instantly to determine their validity.
  • Batch Processing: Handle bulk email verification for larger lists.
  • Detailed Reporting: Get comprehensive results, including the status of each email.
  • Easy Integration: Simple and straightforward API, making it easy to integrate into any Node.js application.

Installation

You can install the mailtesterninja package via npm:

npm install mailtesterninja --save

## Getting Started

To start using the MailTester Ninja library, you'll first need to sign up for an API key from [MailTester Ninja](https://mailtester.ninja). Once you have your API key, you can use it to initialize the library.

### Example Usage

const MailTesterNinja = require('mailtesterninja');

// Initialize the library with your API key
const mailTester = new MailTesterNinja('your-api-key-here');

// Verify a single email address
mailTester.verifyEmail('[email protected]')
  .then(result => {
    console.log(result);
    // Output the verification result
  })
  .catch(error => {
    console.error('Error verifying email:', error);
  });

// Verify a batch of email addresses
const emails = ['[email protected]', '[email protected]', '[email protected]'];
mailTester.verifyBatch(emails)
  .then(results => {
    console.log(results);
    // Output the batch verification results
  })
  .catch(error => {
    console.error('Error verifying batch of emails:', error);
  });


## API

### `verifyEmail(email: string): Promise<object>`

Verifies a single email address.

-   **email:** The email address to be verified.
-   **Returns:** A promise that resolves to an object containing the verification result.

### `verifyBatch(emails: string[]): Promise<object[]>`

Verifies a batch of email addresses.

-   **emails:** An array of email addresses to be verified.
-   **Returns:** A promise that resolves to an array of objects, each containing the verification result for an email address.

## Error Handling

If the API returns an error, the promise will be rejected with an error object. It's recommended to handle errors using `.catch()`.

## License

This library is licensed under the MIT License. See the LICENSE file for more details.

## Contributing

Contributions are welcome! Please submit a pull request or open an issue if you have any suggestions or improvements.

## Support

If you have any questions or need support, please contact us at [email protected].

## Acknowledgments

Thanks to all the contributors who have helped improve this library. Your efforts are greatly appreciated!



This `README.md` provides a comprehensive overview of the MailTester Ninja Node.js library, including installation instructions, usage examples, and API documentation. Adjust the content as needed to fit your actual package and features.