Templates Overview
Built-in Templates
Section titled “Built-in Templates”| Template | Runtime | Description |
|---|---|---|
python3 | Python 3.11 | Default. Full stdlib + pip |
javascript | Node.js 20 | V8 isolate |
synapse | .syn native | Wasm-native execution |
Using Templates
Section titled “Using Templates”# Python (default)cell = Cell(template="python3")
# JavaScriptcell = Cell(template="javascript")Listing Templates
Section titled “Listing Templates”from synapse.cli import main# or via CLI:# synapse template list