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

@tsed/logger-smtp

v6.7.8

Published

SMTP appender module for @tsed/logger

Downloads

71

Readme

@tsed/logger-smtp

Build Status Coverage Status TypeScript npm version Dependencies img img Known Vulnerabilities

A package of Ts.ED logger framework.

Features

Sends log events as emails. If you use this appender, you should also call shutdown when your application closes so that any remaining emails can be sent. Many of the configuration options below are passed through to nodemailer, so you should read their docs to get the most out of this appender.

Configuration

  • type - smtp
  • SMTP - object (optional, if not present will use transport field)
    • host - string (optional, defaults to localhost)
    • port - integer (optional, defaults to 25)
    • auth - object (optional) - authentication details
      • user - string
      • pass - string
  • transport - object (optional, if not present will use SMTP) - see nodemailer docs for transport options
    • plugin - string (optional, defaults to smtp) - the nodemailer transport plugin to use
    • options - object - configuration for the transport plugin
  • attachment - object (optional) - send logs as email attachment
    • enable - boolean (optional, defaults to false)
    • message - string (optional, defaults to See logs as attachment) - message to put in body of email
    • filename - string (optional, defaults to default.log) - attachment filename
  • sendInterval - integer (optional, defaults to 0) - batch emails and send in one email every sendInterval seconds, if 0 then every log message will send an email.
  • shutdownTimeout - integer (optional, defaults to 5) - time in seconds to wait for emails to be sent during shutdown
  • recipients - string - email addresses to send the logs to
  • subject - string (optional, defaults to message from first log event in batch) - subject for email
  • sender - string (optional) - who the logs should be sent as
  • html - boolean (optional, defaults to false) - send the email as HTML instead of plain text
  • layout - object (optional, defaults to basicLayout) - see layouts
  • cc - string (optional) - email addresses to send the carbon-copy logs to
  • bcc - string (optional) - email addresses to send the blind-carbon-copy logs to

Example (default config)

import {Logger} from "@tsed/logger";
import "@tsed/logger-smtp";

const logger = new Logger("loggerName");

logger.appenders.set("email", {
  type: "smtp",
  level: ["error"],
  recipients: "[email protected]"
});

This configuration will send an email using the smtp server running on localhost:25, for every log event of level ERROR and above. The email will be sent to [email protected], the subject will be the message part of the log event, the body of the email will be log event formatted by the basic layout function.

Example (logs as attachments, batched)

import {Logger} from "@tsed/logger";
import "@tsed/logger-smtp";

const logger = new Logger("loggerName");

logger.appenders.set("email", {
  type: "smtp",
  level: ["error"],
  recipients: "[email protected]",
  subject: "Latest logs",
  sender: "[email protected]",
  attachment: {
    enable: true,
    filename: "latest.log",
    message: "See the attachment for the latest logs"
  },
  sendInterval: 3600
});

This configuration will send an email once every hour, with all the log events of level ERROR and above as an attached file.

Example (custom SMTP host)

import {Logger} from "@tsed/logger";
import "@tsed/logger-smtp";

const logger = new Logger("loggerName");

logger.appenders.set("email", {
  type: "smtp",
  level: ["error"],
  recipients: "[email protected]",
  SMTP: {host: "smtp.company.name", port: 8025}
});

This configuration can also be written as:

import {Logger} from "@tsed/logger";
import "@tsed/logger-smtp";

const logger = new Logger("loggerName");

logger.appenders.set("email", {
  type: "smtp",
  level: ["error"],
  recipients: "[email protected]",
  transport: {
    plugin: "smtp",
    options: {
      host: "smtp.company.name",
      port: 8025
    }
  }
});

A similar config can be used to specify a different transport plugin than smtp. See the nodemailer docs for more details.

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

License

The MIT License (MIT)

Copyright (c) 2016 - 2018 Romain Lenzotti

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.