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

lifta

v1.0.0

Published

Asynchronous arrows for JavaScript. Eventual programming.

Downloads

26

Readme

lifta image

There are a number of packages/repos related to liftA. This repository provides the high-order functions (combinators) that allow for asynchronous arrow creation and composition. A fluent syntax is available that extends Function.prototype to include properties and functions that provide what I believe is better clarity when constructing asynchronous arrows. For the fluent syntax, please see lifta-syntax.

The Point of No Return

This is the liƒtA JavaScript library by Bill Enright. It is an implementation of "asynchronous arrows."" It is a library of functions for high-order functional programming of asynchronous and event-driven work in JavaScript. Recently I have heard Douglas Crockford refer to this as "eventual programming." I like the way that sounds. This work was inspired by the "Arrowlets" library by Khoo Yit Phang. It attempts to offer a simplified view of asynchronous arrows so that you may build on it without being confined by the original style. This library has fewer features in order to be less opinionated.

With the advent of ES6 implementations that support proper tail calls (such as the xs engine, iOS and WebKit browser - sadly v8 engine above 7 is still not ES6 compliant) there is no longer a need to use a trampoline and thunking to achieve continuations, and this greatly simplifies the implementation of asynchronous arrows in JavaScript. Also, the expressiveness of "fat arrow" function syntax in ES6 makes the code defining asynchronous arrows much more readable. For example:

// first f, then g, f and g are arrows
let thenA = (f, g) => (x, cont, p) => {
  return f(x, (x) => {
    return g(x, cont, p);
  }, p);
};

Asynchronous arrows can be constructed from a variety of included functions, such as liftA(), thenA(), firstA(), secondA(), productA() and fanA(). For a visual description of these see arr, >>>, first, second, *** and &&& here: https://en.wikibooks.org/wiki/Haskell/Understanding_arrows

eitherA() executes only one of its arguments (the first to complete - the other is cancelled). repeatA() allows for looping. leftOrRightA() supports conditionals.

This library augments Array.prototype with a "first" and "second" property to support simple semantics for handling tuples. Generally, we assume that the 'x' - the first parameter when calling an asynchronous arrow - is a pair. firstA() and secondA() construct asynchronous arrows that operate on one of the pair, and pass the value of the other of the pair through.

A simple mechanism - provided by "P" - for cancelling asynchronous arrows 'in flight' is provided.

To Be Continued...