create_module
Generate reusable code modules in JavaScript or Python for cross-workflow automation and integration in n8n environments.
Instructions
Create a shared code module that can be used across workflows
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | Yes | Programming language for the module | |
name | Yes | Name of the shared module |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "Programming language for the module",
"enum": [
"javascript",
"python"
],
"type": "string"
},
"name": {
"description": "Name of the shared module",
"type": "string"
}
},
"required": [
"name",
"language"
],
"type": "object"
}