Skip to content

turbot/fn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

@turbot/fn

Turbot wrapper for control functions.

Install

npm install --save @turbot/fn

Usage

This package returns a function with the signature expected by AWS Lambda for node. It should be assigned to the handler entry point for the control.

const tfn = require("@turbot/fn");
exports.control = tfn((turbot, $, callback) => {
  // your code here
});

Test mode

If TURBOT_TEST is truthy then the function will be run in test mode:

  • Input should be passed directly (no SNS message wrapper)
  • The callback results will be { turbot: {/*data*/}, result: {/*data*/} }.
  • Commands will not be published to SNS.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published