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

@springworks/error-factory

Package Overview
Dependencies
Maintainers
1
Versions
434
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@springworks/error-factory

Simple Node.js module to provide better error handling throughout an application.

  • 4.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
510
decreased by-42.57%
Maintainers
1
Weekly downloads
 
Created
Source

Node.js Error module

Build Status Coverage Status NSP Status Greenkeeper badge

Simple Node.js module to provide better error handling throughout an application.

Makes use of HTTP error codes to identify different error types.

Install

npm i -S @springworks/error-factory

API:

import { createError } from '@springworks/error-factory';

create({ code = 500, message, cause })

Creates an error with the provided properties.

const err = createError({ code: 404, message: 'Could not find user', cause: db_err });

Tests

Run npm test to run complete unit tests with Istanbul code coverage.

Keywords

FAQs

Package last updated on 31 Aug 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