Skip to content

Connector CLI v1.14.0 — debugger reliability and UX

GraFx Studio icon

A new version of the Connector CLI improves the reliability and developer experience of the local debugger.

✨ New & Improved

Compile errors in the debugger

When a save introduces a TypeScript error under connector-cli debug, the CLI still logs the diagnostics in the terminal — and now also shows them as a full-page overlay in the debugger. A successful rebuild clears the overlay and reloads the browser tab with the new build.

Until the first successful compile, the connector script is not available in the browser.

Optional browser launch and host binding

The debug server prints the debug URL and does not open a browser by default. Open the reported URL yourself, or pass --open to launch it:

connector-cli debug --open

Bind to a specific host when you need remote access (for example from another device on the network):

connector-cli debug --host 0.0.0.0

Debugger UI and session behavior

The debugger UI is aligned with Platform-style design. Settings and method inputs persist across the session, and copy, empty, and error states are clearer.

ℹ️ Info for existing projects

Node.js 20 is no longer supported. Use a current Node.js LTS — the same contract as Pre-requisites.

More info