JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 79
  • Score
    100M100P100Q68174F
  • License to be determined

Configure and execute a machine using inputs and exits

Package Exports

  • node-machine

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-machine) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

node-machine

Basic Usage

var Machines = require('node-machine');

var getRepo = Machines.load('machinepack-github/get-repo');

getRepo({
  user: 'balderdashy',
  repo: 'sails'
}).exec({
  success: function (results){ /*...*/ },
  error: function (err){ /*...*/ },
  invalidApiKey: function (err){ /*...*/ },
  // etc.
});