0.0.6 • Published 5 years ago

@heat/step-functions-local v0.0.6

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

@heat/step-functions-local

A wrapper around Amazon's StepFunctions Local to start and stop it from Node.js.

version

This module wraps Amazon's StepFunctions Local. It just exposes one method called spawn() which does not much more than calling child_process.spawn() and returning it's result.

const stepFunctionsLocalProcess = dynamoDbLocal.spawn();
// ...
stepFunctionsLocalProcess.kill();

A property the options object could have is port. It specifies the port number that the process will run on. In absence of the port property, 8083 is used as the port number.

const port = 8083;
const stepFunctionsLocalProcess = stepFunctionsLocal.spawn(port);
// ...
stepFunctionsLocalProcess.kill();
0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago