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

sentry-node

v2.3.2

Published

simple Node wrapper around Sentry API

Downloads

1,695

Readme

Sentry-node

Node v0.10 compatible

Build Status

A simple Node wrapper around the Sentry API.

Installation

$ npm install sentry-node

Testing

$ npm test

Usage

Creating the Client

var Sentry = require('sentry-node');

You can initialize sentry-node by passing in a Sentry DSN:

var sentry = new Sentry('<your Sentry DSN>');

You can also pass in the individual parameters that make up the DSN as an object:

var sentry = new Sentry({
  key: '<your sentry public key>',
  secret: '<your sentry secret key>',
  project_id: '<your sentry project id>'
});

Note: If the DSN passed to Sentry is invalid, the client will be disabled. You will still be able to call its methods, but no data will be sent to Sentry. This can be useful behavior for testing and development environments, where you may not want to be logging errors to Sentry.

Error

sentry.error(err, logger, culprit, extra);

sample

sentry.error(
  new Error("The error method expected an Error instance as first argument."),
  '/sentry-node.coffee',
  "Bad arguments to sentry-node:error method",
  {
    note: "to test sentry-node error method", 
    version: "0.1.0"
  }
);

image

arguments

  • err: the error object to log, must be an instance of Error. err.message will be used for the smaller text that appears right under culprit
  • logger: the place where the error was detected
  • culprit: the location of the code that caused the error. If not known, should be null. If included, is the big text at the top of the sentry error.
  • extra: (optional) an object that gives more context about the error, it is augmented with stacktrace which contains err.stack

Message

sentry.message(message, logger, extra);

sample

sentry.message(
  "message",
  "/trial.coffee",
  {
    note: "to test sentry-node api",
    type: "message"
  }
);

image

arguments

  • message: text will be used for both the big text that appears at the top and the smaller text appears right under it
  • logger: the place where the error was detected
  • extra: (optional) an object that gives more context about the message

Wrapper

Wrapper can be used to wrap an async function, which will attempt to log any error's passed to the async function's callback with sentry.

sentry.wrapper(logger, timeout).wrap(some_async_func);

When using wrapper, in case of an error, it's possible to pass extra context parameters by assigning them to the wrapper.globals variable:

wrapper = sentry_wrapper(logger, timeout)
wrapper.wrap(function(cb) {
  if (some_error_case) {
    wrapper.globals.context = "some context information to be logged";
    cb(new Error("error has occured"));
  }
});

sample

wrapped = sentry.wrapper('logger', 1000).wrap(function(callback){
    callback(new Error('error to be logged'));
});
wrapped();

arguments

  • logger: value used as the logger argument to sentry.error
  • timeout: (optional) the timeout (in ms) to wait for sentry to log error. If timeout is exceeded, wrapped async function's callback will return a sentry timeout error.

Events

The Sentry client emits three events that you can listen to:

  • 'logged': emitted when an error or message is successfully logged to Sentry
  • 'error': emitted when an error occurs within the Sentry client and an error or message fails to be logged to Sentry
  • 'warning':
    • emitted when a value of the incorrect type is passed as err or logger
    • emitted when a HTTP 429 (burst rate limiting) is returned from Sentry API
sentry.on('logged', function(){
  console.log('Yay, it worked!');
});
sentry.on('error', function(e){
  console.log('oh well, Sentry is broke.');
  console.log(e);
})
sentry.on('warning', function(e){
  console.log('You did something sentry didn't expect', e);
})

Best Practices

The Sentry client expects an instance of Error - if it is given some other object, it will still send the error to Sentry, but much of the error content will be lost. This behavior is intended to align with the node.js best practice of always using Error instances. This means you should always take care to construct an Error object with an appropriate message before logging it to Sentry (really, you should always be using Error objects to represent error data throughout your codebase).

You should always give as much context as possible with your errors. Make liberal use of the extra parameter to send more information that may help someone (most likely your future self) diagnose the cause of the error.

If you attach other fields with important data to the Error instance, they will not show up in Sentry automatically. You should make sure to include those fields on the extra object.

Sentry asks for three main fields:

  • message: what was the exception? Always the message from the passed in error.
  • logger: what piece of code generated the message to Sentry? Usually just whatever application actually holds the Sentry client.
  • extra: what other information is needed to determine the cause of the error