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

@flownet/lib-bpmn-from-flow

v0.1.10

Published

**@flownet/lib-bpmn-from-flow** is a source code that provides a comprehensive approach to convert workflows into Business Process Model and Notation (BPMN) diagrams. Primarily, it serves as a BPMN generation tool for coding workflows in the 'flownet' env

Downloads

268

Readme

@flownet/lib-bpmn-from-flow

@flownet/lib-bpmn-from-flow is a source code that provides a comprehensive approach to convert workflows into Business Process Model and Notation (BPMN) diagrams. Primarily, it serves as a BPMN generation tool for coding workflows in the 'flownet' environment, where workflows are described as 'flows'.

Main functionalities

The primary purpose of this code is to automatically generate graphical visualization of workflow diagrams based on defined data structures. It embodies specific algorithms to convert workflows into BPMN diagrams, a standard for defining business processes in the form of a graphical flowchart. The BPMN diagrams help in visualizing an entire sequence of processes, from the start event to the end event.

To establish this, the code fie uses the DAGRE algorithm (directed acyclic graph rendering algorithm) to establish BPMN layouts. It also uses the bpmn-moddle library to create and manipulate BPMN 2.0 xml diagrams.

Every 'node' in the workflow is converted into an element of a BPMN diagram using a set of conventions, attributes, and properties. The code can handle different workflow structures, including simple workflows to complex workflows with switches, sub-workflows, and modules.

Notably, it also creates 'virtual nodes' to facilitate the conversion into BPMN diagrams. For instance, if a workflow node has multiple sequence flows going from it, a virtual 'switch' node is created to represent decision-making.

The code also allows for creating 'subprocess nodes' to represent contained processes within a larger workflow. These subprocess nodes can themselves be broken down further into their internal nodes and flows, enabling a detailed analysis of the workflow at multiple levels.

The generation of the BPMN diagram is not a one-step operation. Instead, the code uses a series of functions that handle different aspects of the BPMN diagram, including flow nodes, sequence flows, subprocess nodes, and overall layout and diagram arrangement.

End-User Perspective

From an end-user's perspective, this code enables users to generate BPMN diagrams for existing workflows without any manual drawing. This can help end-users visualize, understand, and optimally manage workflow-based business processes. It can also facilitate documentation, review and improvement of the workflows.