Skip to main content
Proxy node for simple data passing. This node passes through any input data without modification, useful for routing or creating connection points in graphs. Input: any - The data type that ProxyNode accepts as input Output: any - The data type that ProxyNode outputs Example:
const proxyNode = new ProxyNode({
  id: 'my-proxy-node',
  reportToClient: false
});

Constructor

new ProxyNode(
    props?: AbstractNodeProps
): ProxyNode
Creates a new ProxyNode instance.

Parameters

props (AbstractNodeProps) = {} Optional configuration for the proxy node. Accepts the common node options from AbstractNodeProps. If omitted, sensible defaults are applied.

Returns

ProxyNode Overrides AbstractNode.constructor