> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inworld.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# ProxyNode

> 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

**Type:** `any`

any - The data type that ProxyNode accepts as input

## Output

**Type:** `any`

any - The data type that ProxyNode outputs

## Examples

```typescript theme={"system"}
const proxyNode = new ProxyNode({
id: 'my-proxy-node',
reportToClient: false
});
```

## Constructors

* [constructor](#constructor)

***

## Constructors

### constructor

```typescript theme={"system"}
new ProxyNode(props?: AbstractNodeProps): ProxyNode
```

Creates a new ProxyNode instance.

#### Parameters

<ParamField body="props" type="AbstractNodeProps">
  Configuration for the proxy node.
</ParamField>

#### Returns

`ProxyNode`
