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 🙏

© 2025 – Pkg Stats / Ryan Hefner

skiperr

v0.0.3

Published

A less-instrusive way of passing errors along in JavaScript / NodeJS.

Downloads

101

Readme

##Overview

skiperr is a way to avoid:

if (err) return next(err);

Using skiperr looks like:

var getSomething = function (done) {
  db.find(function(result){
    callback(null, parseInt(result));
  }.skiperr(done));
}

The callback pattern in node will often leave you checking for errors and passing them along. Promises are a way of avoiding this repetition, but they transform your entire code base. This library lets you continue using standard callbacks with a slightly nicer syntax.

##Usage

In NodeJS, it's common to check for an error and pass it along. For example:

// without skiperr
var getSomething = function (callback) {
  db.find(function(err, result){
    // error? pass it on
    if (err) return callback(err);

    callback(null, parseInt(result));
  });
}

This module lets you automatically pass those errors on without an explicit check:

// with skiperr
var getSomething = function (callback) {
  db.find(function(result){
    callback(null, parseInt(result));
  }.skiperr(callback));
}

##Examples

var done = function (err, result) {
  console.log("Done", arguments);
};

var myCallback = function (result) {
  console.log("MyCallback", arguments);
  done(null, result);
}.skiperr(done);

// when no error happens
myCallback(null, 3);
> MyCallback [3]
> Done [null, 3]

// when an error happens
myCallback('It broke', 4);
> Done ['It broke', 3]

How It Works

It's very simple. You call .skiperr() on your function and pass the callback.

If skiperr receives an error, it will skip your function and just call the callback directly. If skiperr does not receive an error, it will call your function.

This means that you don't have to check for errors. If an error happened, your function is skipped.

Documentation

Install skiperr from npm:

> npm install skiperr --save

When your app starts up, include the skiperr module so it can extend Function.prototype.

require('skiperr');

####.skiperr(callback)

Then you call .skiperr(...) it on your function.

Generally it's a bad idea to muck with a prototype, but let's be honest - if you don't want to mess with the function prototype then you don't want this module.

####Arguments

  • callback - Required. The callback that should receive the error. All arguments are passed to this callback in the case of an error.

Testing

This repository includes tests written in mocha.

License

MIT License