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

@sealsystems/state-machine

v0.2.7

Published

Finite state machine

Downloads

16

Readme

@sealsystems/state-machine

CircleCI AppVeyor

Finite state machine.

Installation

$ npm install @sealsystems/state-machine

Quick start

First you need to integrate @sealsystems/state-machine into your application.

const stateMachine = require('@sealsystems/state-machine');

Then create your own constructor function or use an empty default one to create a new state machine.

const ExampleConstructor = function () {
  // do some initialization here
};
const MyMachine = stateMachine.extend(ExampleConstructor);

Add nodes and transitions and set default start node.

const node = MyMachine.prototype.node('Lasagne');
MyMachine.prototype.node('NothingLeft');

node.transition('Garfield', 'NothingLeft', async (node, transition) => {
  console.log('Soon it will be eaten');
});
MyMachine.prototype.initialNode('Lasagne');

Instaniate machine object and use it.

const myMachine = new MyMachine();

console.log(myMachine.getCurrentNode());
await myMachine.transit('Garfield');
console.log(myMachine.getCurrentNode());

API

stateMachine.extend(Constructor)

  • Constructor optional Constructor function for new state machine

Extends the given constructor function or an empty default function by mixin Machine specific functions. Returns the Constructor function.

Machine.node(nodeName)

  • nodeName - Name of a new or existing node

Returns node object of name nodeName. Creates new node if not present.

Machine.initialNode(nodeName)

  • nodeName - Name of initial node. The node has to be added before.

Set the initial node the machine should start with.

Machine.getCurrentNode()

Returns name of current node, undefined if no initial node is given.

Machine.getPreviousNode()

Returns name of previous node, undefined if no transit occurred.

Machine.getCurrentTransition()

Returns object with name of current transition and leaving node. Object structure:

{
  transition: 'transition name'
  node: node-object
}

Machine.preTransition(async preTransitCallback)

  • async preTransitCallback(node, transition, payload, callback) - Transition callback (async). Node is leaving node, transition name is always preTransition

Sets a async callback which is always called by the machine before any transition is executed.

Machine.postTransition(async postTransitCallback)

  • async postTransitCallback(node, transition, payload, callback) - Transition callback (async). Node is new entered node, transition name is always postTransition

Sets a async callback which is always called by the machine after any transition is executed successfully.

(async) Machine.transit(transitionName [, payload])

  • transitionName - Name of transition to execute.
  • payload optional The runtime data of the transition. If omitted, an empty object will be created.

Execute a transit (async) and returns the nodeName, which is the name of the new currentNode.

Node.getName()

Returns name of the node.

Node.transition(transitionName, nextNode, async executeFunction)

  • transitionName - Arbitrary name to identify the transition
  • nextNode - Name of the node after the transit finished successfully
  • async executeFunction(node, transition, payload) - The function to execute the transit. It is called as member function of Machine object.
    • this is the Machine instance.
    • node is the object of the leaving node.
    • transition is the executing transition object.
    • payload is the runtime data object of the transition and is passed to all callbacks from preTransition to postTransition..

Add a new transition to a node. Returns the node object.

Node.getTransition(transitionName)

  • transitionName - Name of transiton

Returns transition object with given name or undefined if transition does not exist.

Node.leave(async leaveFunction)

  • async leaveFunction(node, transition, payload) - Called before a transit when the node is going to be left. The nodeis the node object to be left, transition is a helper transition with the name leave.

Set function which is always called when a node is going to be left. Returns the node object.

Node.enter(async enterFunction)

  • async enterFunction(node, transition, payload) - Called after a transit when the node is already entered. The nodeis the node object entered, transition is a helper transition with the name enter.

Set function which is always called when the node is entered after a transit. Returns the node object.

Transition.getName()

Returns name of the transition.

Transition.getNextNode()

Returns name of target node after transit.

Running the build

To build this module use roboter.

$ bot