Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@wmfs/statebox

Package Overview
Dependencies
Maintainers
1
Versions
148
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wmfs/statebox

Orchestrate Node functions using Amazon States Language

  • 1.3.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
91
decreased by-49.44%
Maintainers
1
Weekly downloads
 
Created
Source

statebox

Tymly Package npm (scoped) Build Status codecov CodeFactor Dependabot badge Commitizen friendly JavaScript Style Guide license

Orchestrate Node functions using Amazon States Language

Install

$ npm install statebox --save

Usage

const Statebox = require('statebox')
const statebox = new Statebox()

// STEP 1:
// Create some 'module' resources (i.e. Javascript 
// classes with 'run' and optional 'init' methods) 
// that state machines can then refer to...
// -------------------------------------------------

statebox.createModuleResources(
  {
    // Simple module to add two numbers together
    add: class Add {
      run (event, context) {
        context.sendTaskSuccess(event.number1 + event.number2)
      }
    },
    // Simple module to subtract one number from another
    subtract: class Subtract {
      // Init methods are optional, but all allow  
      // resource-instances to be configured...
      init (resourceConfig, env, callback) {
          callback(null)
        }
      run (event, context) {
        context.sendTaskSuccess(event.number1 - event.number2)
      }      
    }
  }
)

// STEP 2:
// Next create a new 'calculator' state
// machine using Amazon States Language...
// ---------------------------------------

const info = statebox.createStateMachines(
  {
    'calculator': {
      Comment: 'A simple calculator',
      StartAt: 'OperatorChoice',
      States: {
        OperatorChoice: {
          Type: 'Choice',
          Choices: [
            {
              Variable: '$.operator',
              StringEquals: '+',
              Next: 'Add'
            },
            {
              Variable: '$.operator',
              StringEquals: '-',
              Next: 'Subtract'
            }
          ]
        },
        Add: {
          Type: 'Task',
          InputPath: '$.numbers',
          Resource: 'module:add', // See createModuleResources()
          ResultPath : '$.result',
          End: true
        },
        Subtract: {
          Type: 'Task',
          InputPath: '$.numbers',
          Resource: 'module:subtract',
          ResultPath : '$.result',
          End: true
        }
      }
    }  
  },
  {}, // 'env': An environment/context/sandbox
  function (err) {
    // All good-to-go!
  }    
)

// STEP 3:
// Start a new execution on a state machine
// ----------------------------------------

executionDescription = await statebox.startExecution(
  {
    numbers: {
      number1: 3,
      number2: 2
    },
    operator: '-'
  },  // input
  'calculator', // state machine name
  {} // options
)
// Result object
// -------------
//  {
//    executionName: '01e1e288-9533-11e7-8fec-54d168e2e610',
//    ctx: {
//      numbers: {
//        number1: 3,
//        number2: 2
//      },
//      operator: '-'
//    },
//    currentStateName: 'OperatorChoice',
//    stateMachineName: 'calculator',
//    status: 'RUNNING',
//    startDate: '2017-09-10T09:40:22.589Z'
//  }

// STEP 4:
// Look at the results...
// ----------------------
executionDescription = await statebox.describeExecution(
  '01e1e288-9533-11e7-8fec-54d168e2e610'
)
//  Result object
//  -------------
// {
//   executionName: '01e1e288-9533-11e7-8fec-54d168e2e610',
//   ctx: {
//     numbers': {
//       number1: 3,
//       number2: 2
//     },
//     operator: '-',
//     result: 1 <--- The important bit :-)
//   },
//   currentStateName: 'Subtract',
//   stateMachineName: 'calculator',
//   status: 'SUCCEEDED',
//   startDate: '2017-09-10T09:59:50.711Z'
// }

Testing

$ npm test

License

MIT

Keywords

FAQs

Package last updated on 26 Jul 2018

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc