1.3.0 • Published 8 years ago

safe-promise v1.3.0

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

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
1.3.0

8 years ago

1.2.2

8 years ago

1.2.1

8 years ago

1.2.0

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago