New:Microsoft Teams Notifications Are Now Available in Socket.Learn more →
Get Started

@codeboxy/faily

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@codeboxy/faily

Send formatted exception emails for Node.js applications

latest
Source
npmnpm
Version
0.0.1
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

errory

Send formatted exception emails for Node.js applications.

errory helps you report runtime errors by email with clean, readable HTML templates including:

  • Environment
  • Date
  • Error message
  • Stacktrace
  • Custom contextual data

Perfect for APIs, scripts, cron jobs, admin panels, and internal systems.

Installation

npm install errory meily

Quick start

import { emailException } from "errory";

try {
    throw new Error("Database connection failed");
} catch (error) {
    emailException(error, {
        route: "/users",
        method: "GET",
        ip: "127.0.0.1"
    });
}

Environment variables

MAIL_HOST=
MAIL_PORT=
MAIL_PASSWORD=
MAIL_SECURE=
MAIL_EXCEPTION_TO=
MAIL_EXCEPTION_FROM=
MAIL_EXCEPTION_TO=

Keywords

error

FAQs

Package last updated on 24 Apr 2026

Related posts