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

p-q-like

v1.0.7

Published

Q-like module for performing the most commonly used asynchronous operations with zero-dependency.

Downloads

3

Readme

p-q-like

Q-like module for performing the most commonly used asynchronous operations with zero-dependency.

Installation

using npm:

npm install p-q-like

using yarn:

yarn add p-q-like

Usage

// CommonJS `require`
const P = require('p-q-like')

// ECMAScript `import`
import P from 'p-q-like'

Deferred promise

// Promised function without nesting
function someAsyncFunctionExample1() {
  const deferred = P.defer()
  setTimeout(() => {
    deferred.resolve()
  }, 1000)
  return deferred.promise
}
// One more example
const someAsyncFunctionExample2 = async () => {
  const { promise, resolve } = P.defer()
  await P.delay(1000)
  resolve()
  return promise
}

Delay in the synchronous execution style

// Thenable delay in milliseconds
P.delay(1000).then(() => {
  console.log('Delayed function executed after 1 second!')
})

// IIFE async await
(async () => {
  await P.delay(1000)
})()

Async operation on each item in an array

const array = [1, 2, 3]

// Supports concurrency modes
const concurrency = 1 // || 0: in parallel || 2+: in parallel with concurrency

const iterateEachOther = (value, index) => {
  const deferred = P.defer()
  setTimeout(() => {
    console.log(`Item at index ${index}: ${value}`)
    deferred.resolve()
  }, 1000)
  return deferred.promise
}

(async () => {
  const { results, errors } = await P.forEach(array, iterateEachOther, concurrency)

  if (!errors.length) console.log('All operations completed!')
})()

API Reference

defer()

Returns a deferred promise that can be resolved or rejected later.

const someAsync = async () => {
  const deferred = P.defer()
  await someOtherAsync()
  deferred.resolve()
  return deferred.promise
}

delay(timeout)

Returns a promise that resolves after a specified amount of time.

// pause for 1 second
await P.delay(1000)

forEach(array, iterator, concurrency = 1)

Performs an async operation on each item in an array, with optional concurrency mode.

Returns a promise that resolves with the results and errors of the operations.

P.forEach(['zero', 'one', 'two'], (value, index) => {
  return new Promise((resolve, reject) => {
    setTimeout(() => {
      console.log(`Item at index ${index}: ${value}`)
      resolve()
    }, 1000)
  })
}).then(({ results, errors }) => {
  console.log('All operations completed!')
})

// => Result
// Item at index 0: zero
// ...one second later...
// Item at index 1: one
// ...one second later...
// Item at index 2: two
// ...one second later...
// All operations completed!

Concurrency modes

0

execute in parallel (Promise.all)

1

(default) execute one by one

2

execute in parallel with concurrency mode

License

MIT