wayscript
Version:
WayScript gives you flexible building blocks to seamlessly integrate, automate and host tools in the cloud.
38 lines (27 loc) • 759 B
Markdown
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)
```
Access the event which triggered an execution:
```
const wayscript = require("wayscript")
event = wayscript.context.getEvent();
console.log(event);
```
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)