Simple full-featured finite state machine for your project
Find a file
2019-10-19 20:27:31 +03:00
src fix: fix bug with types 2019-10-19 20:06:18 +03:00
tests tests: add tests for 100 coverage 2019-10-19 20:19:04 +03:00
.gitignore ci: add travis config 2019-10-19 20:21:24 +03:00
.travis.yml ci: add travis config 2019-10-19 20:21:24 +03:00
jest.config.js Initial commit 2019-10-11 14:57:31 +03:00
LICENSE Initial commit 2019-10-11 14:57:31 +03:00
package-lock.json fix: fix bug with types 2019-10-19 20:06:18 +03:00
package.json chore: add build badge to readme 2019-10-19 20:27:31 +03:00
README.md chore: add build badge to readme 2019-10-19 20:27:31 +03:00
tsconfig.json fix: fix bug with types 2019-10-19 20:06:18 +03:00

IT FSM

Simple finite state machine

Build Status

Installation

npm install --save it-fsm

Usage

import { StateMachine } from 'it-fsm';

const fsm = new StateMachine('TODO', {
  TODO: {
    complete: 'COMPLETE'
  }
})


if (fsm.can('complete')) {
  fsm.complete().then(() => {
    
  })
}
// or
if (fsm.canToState('COMPLETE')) {
  fsm.complete().then(() => {
    
  });
}