You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

promise-log

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

promise-log

shortcut for console.loggin' your promises

0.1.1
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

promise-log

I don't know about you, but I'm tired of typing stuff like this while debugging my node libraries (specially when working in the REPL!):

somePromiseReturningFunction(args).then(console.log).catch((e) => console.log(e.stack))

Instead, I'd like to do this:

somePromiseReturningFunction(args).log();

Or even, in longer processing chains:

myPromise
  .then(doStuff)
  .then(someWeirdProcessingStuff)
  .then(function (value) {
    console.log('partial value is:', value);
    return value;
  })
  .then(doMoreStuff);

Becomes:

myPromise
  .then(doStuff)
  .then(someWeirdProcessingStuff)
  .log('partial value is:')
  .then(doMoreStuff);

Hence, I published the promise-log module to better support my laziness.

Usage

Install with npm:

npm install promise-log

And require anywhere in your project, passing the promise prototype you want to extend (defaults to native Promise):

require('promise-log')(Promise);

That will add the log method to the Promise prototype.

FAQs

Package last updated on 18 Jun 2016

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