Socket
Socket
Sign inDemoInstall

nanostate

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nanostate

Small Finite State Machine implementation


Version published
Maintainers
1
Install size
13.8 kB
Created

Readme

Source

nanostate

npm version build status downloads js-standard-style

Small Finite State Machine implementation

Usage

var nanostate = require('nanostate')

var state = nanostate('green', {
  green: { timer: 'yellow' },
  yellow: { timer: 'red' },
  red: { timer: 'green' }
})

var newState
newState = state.transition('timer')
console.log(newState)
// => 'yellow'

newState = state.transition('timer')
console.log(newState)
// => 'red'

newState = state.transition('timer')
console.log(newState)
// => 'green'

Hierarchical

var nanostate = require('nanostate')

var state = nanostate('green', {
  green: { timer: 'yellow' },
  yellow: { timer: 'red' },
  red: { timer: 'green' }
})

state.mount('red', nanostate('walk', {
  walk: { 'timer:ped': 'wait' },
  wait: { 'timer:ped': 'stop' },
  stop: {}
}))

var newState
newState = state.transition('timer')
newState = state.transition('timer')
console.log(newState)
// => 'red:walk'

newState = state.transition('ped:timer')
console.log(newState)
// => 'red.wait'

License

Apache-2.0

Keywords

FAQs

Last updated on 15 Nov 2017

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc