New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@lecstor/app-error

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lecstor/app-error

Simplify error handling in microservices

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

app-error

Simplify error handling in microservices

Install

$ yarn add @lecstor/app-error

Usage

const AppError = require('@lecstor/app-error');

const error = AppError(
  "EmailInvalid",
  {
    status: 400,
    message: "Not a valid email address"
  }
);

console.log(error.stack);
EmailInvalid: Not a valid email address
    at repl:1:15
    ...

const response = error.getResponse();

console.log(response);
{
  name: 'EmailInvalid',
  message: 'Not a valid email address',
  status: 400,
  isAppError: true,
  isExpected: true
}
In Express
const express = require("express");
const requestP = require("request-promise-native");
const bunyan = require("bunyan");
const {
  RemoteError, bunyanSerializer
} = require("@lecstor/app-error");

const buffer = new bunyan.RingBuffer({ limit: 10 });

const log = bunyan.createLogger({
  serializers: { err: bunyanSerializer }
});

const app = express();

/**
 * our function that creates a user with a call to the user service
 * and throws RemoteErrors
 */
function createUser() {
  return requestP.post({ uri: "http://localhost:4321/new-user" })
    .catch(err => {
      throw RemoteError(err.error);
    });
}

/**
 * our routes all end with a catch which calls `next`
 */
app.post("/create-user", (req, res, next) =>
  createUser().catch(next)
);

/**
 * our app includes an error handler which gets those `next` calls
 */
app.use(function(err, req, res, next) {
  if (err.isAppError) {
    const response = err.getResponse();
    res.status(response.status).send(response);
    if (err.isExpected) {
      log.info({ err });
    } else {
      log.error({ err });
    }
  } else {
    res.send(err);
    log.error({ err });
  }
});

module.exports = app;

FAQs

Package last updated on 27 Aug 2017

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