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

@flowcards/core

v13.2.0

Published

use case based flows for state management

Downloads

270

Readme

Introducing FlowCards: Simplify Application Modeling Scenario by Scenario

flowcards offers a powerful solution to simplify application development. By leveraging flowcards, you can streamline the process and enjoy numerous benefits that enhance your development workflow. Let's explore how flowcards can revolutionize your approach to software development.

What is flowcards?

flowcards provides a seamless way to translate application scenarios into code. These scenarios describe the necessary steps for the user or system to achieve specific goals, such as searching for products or handling user interactions. You can think of scenarios as user stories, use cases, or user flows. Take a look at this example scenario written in Gherkin syntax:

Scenario: User is able to search for products

  • Given the user has selected a category
  • When the user enters a search string that is longer than 3 characters
  • And the user initiates a search
  • Then the products are fetched from the server

With flowcards, you can directly translate scenarios like this into code, simplifying the development process. Here's a code snippet showcasing the translation:

function* userCanSearchForProducts(selectedCategoryId: number) {
  const searchString = yield* getValue(askFor(startSearchEvent, (input) => input.length > 3));
  yield request(searchProductsEvent, () => getProductsFromServer(selectedCategoryId, searchString));
}

Core architecture concepts can be found in this miro board

Why Use Flowcards?

flowcards can bring a range of benefits that significantly enhance the software development process. Let's explore how flowcards can transform your development experience, or jump directly into a code-example

Enhanced Collaboration: Flowcards facilitate better communication and collaboration among development teams. By modeling scenarios, everyone gains a clear understanding of the application's functionality and can work together seamlessly.

Agility and Flexibility: Flowcards enable agile development, even with larger codebases. By organizing code around scenarios, teams can quickly adapt and make changes without losing context, ensuring development remains agile and responsive.

Efficient Debugging: Flowcards simplify the debugging process. With clearly defined scenarios, it becomes easier to trace issues back to their root causes, enabling faster and more effective troubleshooting.

Reusability and Modularity: Flowcards promote code reusability and modularity. Once you've modeled and implemented a scenario, you can easily reuse it across different parts of your application, reducing duplication and improving efficiency.

Easy Maintenance: Flowcards make maintenance straightforward. When a scenario requires modification or updates, you can locate and make changes without affecting unrelated parts of the codebase, ensuring easier maintenance and reducing the risk of introducing errors.

Enhanced Testability: Flowcards simplify the creation of targeted tests for specific scenarios. With well-defined scenarios, you can easily validate the expected behavior of your application through comprehensive testing.

Improved Documentation: Flowcards serve as a form of documentation themselves. They provide a visual representation of application scenarios, making it easier for developers to understand and onboard new team members, improving overall documentation.

By harnessing these benefits, Flowcards empower developers to build robust, maintainable applications while streamlining the development process. Start leveraging Flowcards today and experience the transformative power they bring to your software development endeavors.

Getting Started

npm install @flowcards/core

will get you all you need. It is a 7kb package with no dependencies

See this Sandbox where flowcards is used for the counter in this Qwik demo

To write behaviours with flowcards, you need 3 Elements:

  1. an event, that will hold the value and can be dispatched if asked for.
export const countEvent = new Event<number>('count');
  1. a flow, that will define the behavior
const rootFlow = function* () {
  yield request(countEvent, 100); // INITIAL EVENT VALUE
  while (true) {
    yield askFor(countEvent, (next) => next < 106); // ASK THE USER TO SUBMIT A NEW COUNT VALUE
    console.log('askFor count', countEvent.value);
  }
}
  1. a scheduler, that will get a root flow
new Scheduler({rootFlow});
  1. Try to dispatch an event with .set
countEvent.set(101); // will increase the counter

Multiple Flows and Synchronization

In real-world applications, a single flow often doesn't stand alone. Multiple flows need to work together harmoniously. Flowcards facilitate this synchronization using the yield keyword.

Consider the following scenario:

Scenario: User needs to confirm the first search once When the user starts a search for the first time Then the user needs to confirm the search

The corresponding Flowcard code would look like this:

function* userNeedsToConfirmFirstSearch() {
  yield extend(startSearchEvent);
  yield askFor(confirmEvent);
  yield request(startSearchEvent);
}

When a flow reaches a yield statement, all other flows have also reached a yield. This synchronization allows each flow to express what events it wants to happen, extend, or block. We call this the placement of "bids."

Flow-API and Bids

Within Flowcards, a yield statement allows a flow to place one or multiple "bids" for events. A flow cannot force an event to happen but can express its desired outcome. There are seven types of bids available:

  1. waitFor: The flow waits for a specific event to occur and proceeds once the event is executed.
  2. askFor: The flow prompts the user to dispatch an event (e.g., a button click).
  3. request: The flow requests a particular event (e.g., an asynchronous fetch).
  4. validate: The flow extends the validation of an event.
  5. extend: The flow extends the logic of an event.
  6. trigger: The flow dispatches an event when asked for by another flow.
  7. block: The flow blocks an event from occurring.