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

@ruslankonev/use-flow

v1.0.0

Published

Execute a series of functions

Downloads

2

Readme

useFlow()

The useFlow function orchestrates asynchronous operations, allowing for sequential and parallel execution of tasks. This versatile tool supports a variety of use cases, from data fetching and processing to complex workflow management.

Features

  • Flexible Arguments: Accepts an arbitrary number of functions, arrays of functions for parallel execution, and promises.
  • Sequential Execution: Processes tasks in the order they are provided, passing the result of one task as the input to the next.
  • Parallel Execution: Supports parallel task execution by accepting arrays of functions, utilizing Promise.all for efficiency.
  • Dynamic Workflow Management: Easily manage complex asynchronous workflows within a single, cohesive pipeline.

Installation

npm i @ruslankonev/use-flow

No specific installation steps are required other than including the useFlow function in your project. Ensure you have a modern JavaScript environment that supports async/await syntax.

Usage

Basic Example

// Define asynchronous tasks
async function fetchData() {
  // Simulate fetching data
  return { data: 'Sample data' };
}

function processData(data) {
  // Process and return data
  return { processedData: `${data.data} processed` };
}

async function saveData(processedData) {
  // Simulate saving data
  console.log(processedData);
}

// Execute tasks sequentially
useFlow(
  fetchData,
  processData,
  saveData
);

// One more example
useFlow(
  () => ({startValue: Date.now()}),
  (payload) => somePromise({value: 1}),
  (response) => processData
);

Parallel Execution

To execute tasks in parallel, wrap them in an array:

async function fetchUserData() {
  // Fetch user data
  return { user: 'John Doe' };
}

async function fetchPosts() {
  // Fetch posts
  return ['Post 1', 'Post 2'];
}

// Execute fetchUserData and fetchPosts in parallel, then process results
useFlow(
  [fetchUserData, fetchPosts],
  processData
);

Handling Promises

The useFlow function can also handle promises directly as part of the workflow:

const somePromise = new Promise((resolve) => resolve('Some data'));

useFlow(
  somePromise,
  (response) => processData
);

Error Handling

Ensure to implement error handling within your tasks. The useFlow function does not catch errors by default, so consider using try-catch blocks within asynchronous tasks or chaining .catch() for promises.

Contributing

Contributions are welcome! If you have suggestions or want to improve the useFlow function, please feel free to submit a pull request or open an issue.