UNPKG

wayscript

Version:

WayScript gives you flexible building blocks to seamlessly integrate, automate and host tools in the cloud.

38 lines (27 loc) 759 B
# wayscript-js ## Triggers ### HTTP Trigger Send an http trigger response: ``` const wayscript = require("wayscript") let data = {"hello": "world"} let headers = {"x-my-custom-header": "hello"} let status_code = 200 response = wayscript.http_trigger.sendResponse(data, headers, status_code) console.log(response) ``` ## Context Access the event which triggered an execution: ``` const wayscript = require("wayscript") event = wayscript.context.getEvent(); console.log(event); ``` ## Secrets To create a new secret, or update an existing one: ``` const wayscript = require("wayscript"); wayscript.secret_manager.setSecret("my_key", "my_secret_value"); ``` More use cases in can be found [here](example.js) Contributing guide [here](CONTRIBUTING.md)