New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

js-state

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-state

A Node.js Finate State Machine

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

JS-State-Machine

A Javascript Finite State Machine

Usage

Include State by:

   var State = require('js-state');

APIs

  • Constructor

      var st = new State({initState: 'ready', states: ['ready', 'middle', 'end']});
    

initState: The inital state of the state machine.

states: The availale states of the state machine.

  • addStates

Add additional states to state machine.

    st.addStates(['initialzed', 'pending']);
  • removeStates

Remove states from state machine.

    st.removeStates(['middle', 'pending']);
  • forth([currentStateData], [previousStateData])

Advance state.

    st.forth('Hello world!!!');

currentStateData: [Optional] the data provided for the current state enter callback.

previousStateData: [Optional] the data provided for the previous state leave callback.

  • back([currentStateData], [previousStateData])

Backward state.

    st.back('Hello universe!!!');

currentStateData: [Optional] the data provided for the current state enter callback.

previousStateData: [Optional] the data provided for the previous state leave callback.

  • go(state, [currentStateData], [previousStateData])

Go to a state.

    st.go('ready', 'Bingo!');

currentStateData: [Optional] the data provided for the current state enter callback.

previousStateData: [Optional] the data provided for the previous state leave callback.

  • on(state, event, callback)

Bind a function that will be triggered when state changed.

    st.on('middle', 'enter', function () {console.log('Aloha');});

state: Target state.

event: Tigger event. Can be either enter or leave.

callback: The function that will be invoked.

Keywords

Finate

FAQs

Package last updated on 09 Feb 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts