Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ansaro/micro-raven-errors

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ansaro/micro-raven-errors

A tiny module for sending Raven errors using Zeit's micro server framework

  • 2.0.2
  • latest
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

micro-raven-errors

Micro wrapper for capturing application errors with Sentry (aka raven)

Installation

yarn add @ansaro/micro-raven-errors

Usage

micro-raven-errors exports a single function that wraps a micro function and captures any errors with a status code of 500 or greater with Raven.

import typeof RavenOptions from "@ansaro/errors"

type MicroFunction = (req http$IncomingMessage, res http$ServerResponse) => any

reportErrors: (opts: RavenOptions, fn: MicroFunction) => MicroFunction
  • opts: an object of optional settings to send when capturing exceptions
  • fn: a function that could otherwise run standalone inside micro. This is your application code.

micro-raven-errors also expect you to provide a Data Source Name, which is a URL where Sentry listens to collect errors from your application. You'll need to set process.env.SENTRY_DSN to be this URL.

Unexpected application errors and HTTP errors with a status code of 500 or higher will be reported to Sentry. Expected HTTP errors like 404s will not be reported.

const micro = require("micro");
const reportErrors = require("@ansaro/micro-raven-errors");

const testServer = async (req, res) => {
  const body = await micro.json(req);

  if (!body.name) {
    throw micro.createError(400); // not reported to Sentry
  }

  if (body.massiveError) {
    throw micro.createError(500, "This is a massive error"); // reported to Sentry
  }

  return { success: true };
};

module.exports = reportErrors({}, testServer);

FAQs

Package last updated on 25 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc