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

choreojs

v1.0.9

Published

Choreograph functions and promises. Quite useful for sequencing UI and event transitions.

Downloads

21

Readme

choreo.js

Choreograph functions and promises. Quite useful for sequencing UI and event transitions that can be canelled midway. Written in ES6.

Installation

npm install choreojs --save

Usage

import Choreo from 'choreojs'

let sequence = Choreo.create()
sequence.add(fun1)
sequence.wait(1000)
sequence.add(func2)

and so on. fun1 and fun2 are regular functions. If you want to add a promise instead, do

sequence.addPromise(promise)

When you are ready to start the sequence, do

sequence.start()

This will choreograph your functions as specified. If you need to cancel a sequence in progress, do

sequence.cancel() 

This is especially useful if your components unmount while a sequence is in progress.

Each function can return a value to be passed on to the next function/promise. Very useful if one of the events is an xhr promise such as getJson(url)

Use case

1

When User clicks on a button.

  • You display a spinner
  • Make an ajax call
  • Stop the spinner
  • Display the results (Maybe add some cool css transitions)

This is quite straightforward with choreojs The following two lines will kick off a json request (assuming that getJson is a promise)

seq.add(() => $('#spinner').show())
seq.add(() => api) // Remember, you can relay data from one to next. Very similar to pointfree style in pipeP
seq.addPromise(getJson)
seq.add((val) => { $('#spinner').hide(); return val;} ) // you simply relay the json result to the next function
seq.add((val) => $('#results').text(val) )

Live Examples for React

Source

How to run the examples in the package

Choreo is ES6 only. You will need to use babel to help with the new 'import' syntax in ES6. To run the examples here do:

git clone https://github.com/rajeshnaroth/choreo.git
cd choreo
npm install
npm run example1