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

neo-bpmn-engine

v8.2.3

Published

Yet another Javascript-based BPMN engine, still under active development, any bug report, issues or questions are welcome, please refer to the [Contribution Guidelines](#contribution-guidelines) section.

Downloads

180

Readme

Neo BPMN Engine in Javascript

Yet another Javascript-based BPMN engine, still under active development, any bug report, issues or questions are welcome, please refer to the Contribution Guidelines section.

Quick Start

npm install neo-bpmn-engine

The engine is designed to be embeddable in any application executing in a javascript environment, browser or NodeJS and provides the absolute minimum interface for execution of the given BPMN XML, starting/stopping process instances and monitoring the same. Additionally, the application could extend the engine for domain specific applications by implementing custom serviceTask, messages, signals and script tasks. A thin wrapper could also be written to expose the engine via HTTP or any other transport, in addition to implementation of common enterprise functions such as authorization.

The two core classes of the engine are BpmnProcess, which serves as a template for creating process instances and the process instance represented by the BpmnProcessInstance class. A BPMNProcess must be created from a valid, executable BPMN XML string, given below.

import * as Engine from 'neo-bpmn-engine';

const myBpmnProcess = await Engine.BpmnProcess.fromXml('process-id', '<...bpmn-process-xml...>');

The above step creates a BPMN process, ready for deployment. Deployment is an essential step, which tells the BpmnProcess class that any auto-triggered start events such as timers may start new instances and message/start start events may wait for invocation. Before starting a process instance, it is essential that we register a callback that will be notified on each creation of a new process instance.

myBpmnProcess.getInstance$().subscribe(newInstance => {
  console.log('--> A new instance was created', newInstance.getId());
});

The above block prepares a callback that will print the id of the newly created process instance. getInstance$ returns a stream of instances, errors in creation of a new instance can also be handled in the same subscription as follows:

myBpmnProcess.getInstance$().subscribe({
  next: instance => {
    console.log('--> A new instance was created', newInstance.getId());
  },
  error: error => {
    console.log('--> Error on instance creation', error);
  }
});
myBpmnProcess.getInstance$().subscribe(newInstance => {
  newInstance.getLog$().subscribe((l) => console.log('%s %s %s - %s %o', l.timestamp, getLevelName(l.level), l.name, l.message, l.params);)
});

Every processinstance has an own logstream which can be subscribed to via the function getLog$

After setting up the subscription, its time to create instances:

myBpmnProcess.deployAndStart();

The above code will deploy the xml and start an instance at a none start event, schedule any timer start events and also wait for message/signal start events. If starting at a specific element is desired,

myBpmnProcess.deployAndStartAt({ id: 'Task_sdf82n' });

Optionally, the process can be started with an initial set of variables,

myBpmnProcess.deployAndStart({ variables: { a: 10, b: 20 } });

Subscription to getInstance$() is not the only way to obtain references to the instances. You can get an array of all the instances via getAllInstances() and if the instance id is known already, you can use getInstanceById(id) on the objects of the BpmnProcess class.

Documentation

BPMN Coverage Status

The engine covers the following BPMN elements:

| Element | Status | Notes | Tests | | ---------------------------------: | :----------------: | :------------------------------------------------------------------------------------ | :------------------------------------------------------------------------------------: | | Sequence Flow | :white_check_mark: | Supports condition expression evaluation in JS | Test cases | | Message Flow | | | | Data Association | | | | Exclusive Gateway | :white_check_mark: | | Test cases | | Parallel Gateway | :white_check_mark: | | Test cases | | Event-Based Gateway | :white_check_mark: | with intermediate catch events from below | Test cases | | Inclusive Gateway | :white_check_mark: | With limitations, refer Known Issues and Limitations | Test cases | | User Task | :white_check_mark: | | Test cases | | Service Task | | | | Script Task | :white_check_mark: | | Test cases | | Receive Task | | | | Sub Process | :white_check_mark: | | Test cases | | Call Activity | :white_check_mark: | | Test cases | | Pool | | | | Lane | | | | Data Object | | | | Data Store | | | | None Start Event | :white_check_mark: | | Test cases | | Message Start Event | :white_check_mark: | | Test cases | | Signal Start Event | :white_check_mark: | | Test cases | | Timer Start Event | :white_check_mark: | cycle and date support pending | Test cases | | None End Event | :white_check_mark: | | Test cases | | Message End Event | :white_check_mark: | | Test cases | | Signal End Event | :white_check_mark: | | Test cases | | Terminate End Event | :white_check_mark: | | Test cases | | Intermediate Catch Event (Message) | :white_check_mark: | message vars pending | Test cases | | Intermediate Catch Event (Signal) | :white_check_mark: | | Test cases | | Intermediate Catch Event (Timer) | :white_check_mark: | cycle and date support pending | Test cases | | Intermediate Throw Event (Message) | :white_check_mark: | | Test cases | | Intermediate Throw Event (Signal) | :white_check_mark: | | Test cases | | Error Boundary Event | :white_check_mark: | | Test cases | | Escalation Boundary Event | :white_check_mark: | | Test cases | | Timer Boundary Event | :white_check_mark: | | Test cases | | Loop | | | | Multi Instance | | |

Known Issues and Limitations

  • Handling Gateways: several corner cases related to gateways, described in [Russell, 2006] require heavy processing and are not required to be implemented if the bpmn is structured (splits and merges are balanced). Therefore, at this moment we do not implement WCP-38.

  • Ambiguity in instance start: the BPMN specification provides several ways of creating a new process instance via start events [OMG, 2014], however, the execution semantics specifies the usage of the same start events to reuse instances, we do not support this as of now.