npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

count-promises

v1.0.1

Published

Count all the promises created between two execution points.

Downloads

5

Readme

count-promises

This library helps you count the promises created from one point in time to another. The intent is to help you find out where promises may be coming from in order to optimize your application. Promises can be very expensive, especially when async_hooks are used, so it's good to keep them to a minimum if you can.

WARNING: This works on Node.js only.

Installation

This is a Node.js package on npm. Install it how you normally would install such a package.

Usage

Import it, call it to start counting, call the result to stop counting.

import startCounter from 'count-promises'

// At some point you want to start counting promises created...
const stop = startCounter()

// Now create a bunch of promises, maybe await them. Or not! For extra fun try
// awaiting non-promises and see how many promises that creates! :D

// At this point, we want to know how many promises have been created...
const total = stop()
console.log(total, 'promises have been created since `startCounter()`')

You can also pass an options object with the following two options:

  • locations: Instead of returning the total number of created promises, return an object whose keys are callsites and whose values are numbers of promises created at those callsites. Default false.
  • continuation: Omit from the count any promises created outside the async continuation starting at the startCounter() call. This is useful to eliminate any noise from other current HTTP requests, for example. Default false.

License

The MIT License. See LICENSE.txt