safe-promise
TypeScript icon, indicating that this package has built-in type declarations

1.3.0 • Public • Published

ES6 Safe Promise

A native promise wrapper that automatically supports the handling of errors in your callback instead of swallowing them silently.
End the struggle and let the errors gracefully bubble up to your console from your Promises!

Why?

Native promises default behavior consists in swallowing the errors that occurs in their process. Unless you explicitely put a .catch(), the errors are lost forever and you just end up spending hours of painful debugging before knowing what's going on.

Installation

npm install safe-promise
var Promise = require('safe-promise').default;

Requirements

  • A node engine natively supporting Promises.
  • that's all

/safe-promise/

    Package Sidebar

    Install

    npm i safe-promise

    Weekly Downloads

    8

    Version

    1.3.0

    License

    ISC

    Last publish

    Collaborators

    • tomsdev