head-side-gearDev Tools

Prax provides developer-focused tools to help you debug, inspect, and customize your flows.


Flow Inspector

Each node’s input/output can be inspected live during execution.

  • Open any flow

  • Run it through the chat or API

  • Click any node to inspect:

    • Inputs

    • Outputs

    • Errors

    • Execution duration

Useful for tracing logic and debugging failures.


Console Output

For local development, logs are printed to the terminal:

bashCopyEditnpm run dev

You’ll see:

  • Node executions

  • API requests

  • Errors or invalid configs


Dev Mode Config

Use .env settings to toggle dev-specific behavior:


Custom Node Development

You can build your own node types:

A basic custom node structure:

Custom nodes can be hot-reloaded during development and will appear in the flow editor.

Last updated