diff --git a/changelog/2026-01-22-interactive-debugger/debugger.png b/changelog/2026-01-22-interactive-debugger/debugger.png new file mode 100644 index 000000000..f2144e325 Binary files /dev/null and b/changelog/2026-01-22-interactive-debugger/debugger.png differ diff --git a/changelog/2026-01-22-interactive-debugger/index.md b/changelog/2026-01-22-interactive-debugger/index.md index 8c52ae840..1279fb68a 100644 --- a/changelog/2026-01-22-interactive-debugger/index.md +++ b/changelog/2026-01-22-interactive-debugger/index.md @@ -1,10 +1,15 @@ --- slug: interactive-debugger title: Interactive script debugger -tags: ['Debugger', 'Python', 'TypeScript', 'Developer'] +tags: ['Script editor'] description: Add breakpoints and run an interactive debugger for Python and TypeScript. +image: ./debugger.png +video: /videos/debugger.mp4 features: - Add breakpoints to Python and TypeScript scripts - Run an interactive debugger session - Step through code execution + - Inspect variables and call stack while paused + - Evaluate expressions in an interactive console +docs: /docs/script_editor/debugger --- diff --git a/docs/script_editor/debugger.mdx b/docs/script_editor/debugger.mdx new file mode 100644 index 000000000..2fe3891e2 --- /dev/null +++ b/docs/script_editor/debugger.mdx @@ -0,0 +1,55 @@ +--- +description: How do I debug scripts in Windmill? Use the built-in debugger for Python and TypeScript (Bun) with breakpoints, variable inspection, call stack, and console. +--- + +import DocCard from '@site/src/components/DocCard'; + +# Script debugger + +Windmill's [script editor](./index.mdx) includes a built-in debugger for [Python](../getting_started/0_scripts_quickstart/2_python_quickstart/index.mdx) and [Bun (TypeScript)](../getting_started/0_scripts_quickstart/1_typescript_quickstart/index.mdx) scripts. It lets you set breakpoints, step through code, inspect variables, view the call stack, and evaluate expressions in an interactive console. + +