Skip to content
This repository has been archived by the owner on Apr 23, 2023. It is now read-only.

Latest commit

 

History

History
29 lines (20 loc) · 721 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 721 Bytes

awsome-doctor-core

npm

Workflow executor & plugins of Awsome Doctor.

Installation

npm install awsome-doctor-core

Usage

import executor from "awsome-doctor-core";

// use default credential provider & region
executor.configure({});
// or specify a region
executor.configure({ region: "us-east-1" });
// or use custom ak/sk
executor.configure({ accessKeyId, secretAccessKey, region });

// run workflow step
executor.run(step.js, workflowData);