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

f-promise-async

v3.2.3

Published

async-await tools base on f-promise for node.js

Downloads

17

Readme

f-promise-async

Originally forked from f-promise, that was a tool managing legacy Promise-oriented coroutines for node.js.

Contrary to f-promise, f-promise-async does not allow to manage promises, but only provides some tools to help promise manipulation and synchronization.

Installation

npm install f-promise-async

TypeScript support

TypeScript is fully supported.

Callbacks support

You can also use f-promise-async with callback APIs. So you don't absolutely need wrappers like mz/fs, you can directly call node's fs API:

import { wait } from 'f-promise-async';

// callback style
import * as fs from 'fs';
const directories = await wait(cb => fs.readdir(path, cb));

Control Flow utilities

These goodies solve some common problems.

run/wait

  • promise = run(() => { wait(promise/callback); ... })
    create a fake coroutine to write asynchronous code in a asynchronous way !
    keep that methode to ease f-promise conversion to async/await
    but also for global context
    • promise = run(fn) create a fake coroutine. Contrary to legacy f-promise, you can use other tools without run, except Continuation local storage.
    • result = await wait(promise/callback) encapsulate callback.

funnel

  • fun = funnel(max)
    limits the number of concurrent executions of a given code block.
    The funnel function is typically used with the following pattern:
// somewhere  
var myFunnel = funnel(10); // create a funnel that only allows 10 concurrent executions.  
// elsewhere  
myFunnel(async function() { /* code with at most 10 concurrent executions */ });  

The funnel function can also be used to implement critical sections. Just set funnel's max parameter to 1.
If max is set to 0, a default number of parallel executions is allowed.
This default number can be read and set via flows.funnel.defaultSize.
If max is negative, the funnel does not limit the level of parallelism.
The funnel can be closed with fun.close().
When a funnel is closed, the operations that are still in the funnel will continue but their callbacks won't be called, and no other operation will enter the funnel.

handshake and queue

  • hs = handshake()
    allocates a simple semaphore that can be used to do simple handshakes between two tasks.
    The returned handshake object has two methods:
    await hs.wait(): waits until hs is notified.
    hs.notify(): notifies hs.
    Note: wait calls are not queued. An exception is thrown if wait is called while another wait is pending.

  • q = new Queue(options)
    allocates a queue which may be used to send data asynchronously between two tasks.
    The max option can be set to control the maximum queue length.
    When max has been reached q.put(data) discards data and returns false.
    The returned queue has the following methods:
    data = await q.read(): dequeue and returns the first item. Waits if the queue is empty. Does not allow concurrent read.
    await q.write(data): queues an item. Waits if the queue is full.
    ok = q.put(data): queues an item synchronously. Returns true if the queue accepted it, false otherwise.
    q.end(): ends the queue. This is the synchronous equivalent of q.write(_, undefined)
    data = q.peek(): returns the first item, without dequeuing it. Returns undefined if the queue is empty.
    array = q.contents(): returns a copy of the queue's contents.
    q.adjust(fn[, thisObj]): adjusts the contents of the queue by calling newContents = fn(oldContents).

Continuation local storage (CLS)

  • result = await withContext(fn, cx)
    wraps a function so that it executes with context cx (or a wrapper around current context if cx is falsy).
    The previous context will be restored when the function returns (or throws).
    returns the wrapped function.
    It is the only tool that need to be executed in a run. Can be a nested function call (coroutine).

Miscellaneous

Related projects

License

MIT.