oneuptime/Workflow/Docs/ComponentDocumentation/JavaScript.md

16 lines
450 B
Markdown
Raw Normal View History

This trigger lets you run custom JavaScrip[t in your workflow.
```
// You can access any arguments by
args['your-argument']
```
**Things to note:**
2023-02-20 14:50:23 +00:00
- Code execution timeout is set to 5 seconds. If your code takes longer than this, we recommend using your own server. Send request from this workflow to your server.
- You can use axios module. If you need access to more modules, please create an issue on GitHub and we will look into it.