stepfunctions-localhost
v0.2.0
Published
A wrapper for AWS's [Step Functions Local](https://docs.aws.amazon.com/step-functions/latest/dg/welcome.html).
Downloads
13,087
Maintainers
Readme
🛠 stepfunctions-localhost
A wrapper for AWS's Step Functions Local.
Heavily inspired by dynamodb-localhost.
Requirements
- Java Runtime Engine (JRE) version 6.x or newer
Install
npm install stepfunctions-localhost
Usage
const StepFunctionsLocal = require('stepfunctions-localhost');
const stepfunctionsLocal = new StepFunctionsLocal();
(async () => {
await stepfunctionsLocal.install();
stepfunctionsLocal.start({}).on('data', data => console.log(data.toString()));
setTimeout(() => {
stepfunctionsLocal.stop();
stepfunctionsLocal.remove();
}, 5000);
})();
This will download the files required to run step functions, start the step function server, wait 5 seconds, then stop the server and clean up after itself.
API
new StepFunctionsLocal(options)
Creates a new instance. options
defaults to {quiet = false, path = './.step-functions-local'}
.
.install()
Downloads files required to run step functions. Path defaults to ./.step-functions-local
.
Returns Promise.
.start(options)
Starts the local server. Options match those of the actual step function server:
-account,--aws-account <Account> the AWS account used to create state machines, activities and executions,
this is also the account of your Lambda and other resources.
By Default, it is set to [123456789012], this is NOT a real account id.
-batchEndpoint,--batch-endpoint <Batch Endpoint> the local endpoint of Batch.
e.g. http://localhost:4574
-dynamoDBEndpoint,--dynamodb-endpoint <DynamoDB Endpoint> the local endpoint of DynamoDB.
e.g. http://localhost:4574
-ecsEndpoint,--ecs-endpoint <ECS Endpoint> the local endpoint of ECS.
e.g. http://localhost:4574
-glueEndpoint,--glue-endpoint <Glue Endpoint> the local endpoint of Glue.
e.g. http://localhost:4574
-h,--help Show this help information.
-lambdaEndpoint,--lambda-endpoint <Lambda Endpoint> the local endpoint of Lambda.
e.g. http://localhost:4574
-region,--aws-region <Region> the region where the state machines, activities and executions will be created,
this is also the region of other AWS resources referred in the state machine.
By Default, it is set to [us-east-1].
-sageMakerEndpoint,--sagemaker-endpoint <SageMaker Endpoint> the local endpoint of SageMaker.
e.g. http://localhost:4574
-snsEndpoint,--sns-endpoint <SNS Endpoint> the local endpoint of SNS.
e.g. http://localhost:4574
-sqsEndpoint,--sqs-endpoint <SQS Endpoint> the local endpoint of SQS.
e.g. http://localhost:4574
-v,--version Show the version and build of Step Functions Local.
-waitTimeScale,--wait-time-scale <Wait Time Scale> the scale of the wait time in the Wait state
e.g. 0.5 means cut the original wait time to half
e.g. 0 means no wait time
e.g. 2 means double the original wait time
For example, to set the account ID, the options object would be {account: 'fake-account-id'}
.
Returns the stdout stream of the spawned server process.
.stop()
Stops the currently running instance.
.remove()
Removes local files that have been downloaded.