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

email-alerts

v2.2.3

Published

A development utility that allows you to send error alerts through email.

Downloads

19

Readme

email-alerts

npm version

This npm module is a wrapper around the sendgrid module meant for quick and easy email/alert sending.

Setup

npm install --save email-alerts

API

require('email-alerts')(options)

Creates an email-alerts object.

Arguments:

  • options: An object that can have the following fields specified:
    • fromEmail: optional, allows you to customize the email domain that you will receive alerts from if you want to filter the emails.
    • toEmail: required, specifies the email that alerts will be sent to.
    • apiKey: required, specifies the Sendgrid API Key. Obtain one here. (You get 100k emails free).
    • subject: optional, allows you to specify the subject header of any alert email.

Returns:

An email-alerts object that you can use to call the following methods.

Example Usage:

var emailAlerts = require('email-alerts')({
  fromEmail: '[email protected]',
  toEmail: '[email protected]',
  apiKey: 'YOUR_KEY_HERE',
  subject: 'ALERT HOLY S***'
});

It is recommended to store your SendGrid API key in an environment variable and pass it using process.env.SENDGRID_API_KEY.

emailAlerts.alert(subject, content, callback)

Sends an email to with the given subject and content, with a callback to be called when the email is finished being sent.

Arguments:

  • subject: the subject header of the email. Cannot be falsy.
  • content: the body content of the email. Cannot be falsy.
  • callback: the function to be called after the email is sent. Generally of the form function(error)

Returns:

undefined

Example Usage:

emailAlerts.alert('ALERT', 'there was a problem');

emailAlerts.alert('ALERT', 'there was another problem', function(error) {
  if (error) {
    console.warn('There was an error sending your email!');
  } else {
    console.log('Everything is good!');
  }
});

emailAlerts.errorCatcher(fn, [onError])

Wraps a function with a try...catch that will send an email if an exception was caught.

Arguments:

  • fn: the function to be executed.
  • [onError]: the function to be run if an exception was caught while running fn. The caught exception will be passed to this function.

Returns:

undefined

Example Usage:

emailAlerts.errorCatcher(someFn);
// If someFn errors during execution, then an alert email will be sent.

emailAlerts.errorCatcher(someFn, function(error) {
  doSomethingWith(error);
});
// If someFn errors during execution, then an alert email will be sent.
// doSomethingWith(error) will be executed with the error that was caught
// during the execution of someFn.

emailAlerts.errorCatcher(function() {
  throw new Error('donald trump is president!');
}, function(error) {
  console.log(error);
});
// In this case, an alert email containing 'donald trump is running for
// president' will be sent to you, and then it will be logged to the console.

emailAlerts.errorHandler([callback])

Returns a function that can be passed as a error callback. If no callback was specified, then the function returned will take one argument, an error. If a callback was specified, then this will wrap the callback with a handler that sends an email if there was an error.

Arguments:

  • [callback]: optional, a callback that will be wrapped by the error handler. Generally of the form function(error, ...).

Returns:

A callback function that can be used as an error callback.

Example Usage:

asynchronousFn1(emailAlerts.errorHandler());
// If asynchronousFn1 passes an error to the errorHandler, then an alert email
// will be sent containing that error.

asynchronousFn2(emailAlerts.errorHandler(function(error, data) {
  if (error) {
    console.warn(error);
  } else {
    doSomethingWith(data);
  }
}));
// If asynchronousFn2 passes an error to the errorHandler, then an alert email
// will be sent in addition to it being logged in the console. If no error was
// passed, then everything will proceed as normal and the data will be
// processed.