add layout for remaining processors/modules and order everything

This commit is contained in:
Joel Wetzell
2026-03-26 16:56:56 -05:00
parent aa79150507
commit 3a92370cdd
58 changed files with 545 additions and 79 deletions
@@ -1,6 +1,7 @@
---
title: HTTP Server
sidebar:
label: Server
order: 2
---
The `http.server` module emits a message for every HTTP request that is made to the server.
+1
View File
@@ -1,6 +1,7 @@
---
title: MIDI Input
sidebar:
label: Input
order: 1
---
+1
View File
@@ -1,6 +1,7 @@
---
title: MIDI Output
sidebar:
label: Output
order: 2
---
import { Aside } from '@astrojs/starlight/components';
+1
View File
@@ -1,6 +1,7 @@
---
title: MQTT Client
sidebar:
label: Client
order: 1
---
+11
View File
@@ -0,0 +1,11 @@
---
title: NATS Client
sidebar:
label: Client
order: 1
---
- **type**: `nats.client`
- **params**:
- **url**
- **subject**
+11
View File
@@ -0,0 +1,11 @@
---
title: NATS Server
sidebar:
label: Server
order: 2
---
- **type**: `nats.server`
- **params**:
- **ip**
- **port**
@@ -1,6 +1,7 @@
---
title: TCP Client
sidebar:
label: Client
order: 1
---
The `net.tcp.client` module connects to TCP server and emits messages based on the data it receives from the server that it connects to. Messages are determined by "framing" techniques as TCP is a stream based protocol. The module will attempt to reconnect anytime the connection is closed.
@@ -1,6 +1,7 @@
---
title: TCP Server
sidebar:
label: Server
order: 2
---
The `net.tcp.server` module emits a message messages based on the data it receives from clients that connect to it. Messages are determined by "framing" techniques as TCP is a stream based protocol.
@@ -1,7 +1,8 @@
---
title: UDP Client
sidebar:
order: 3
label: Client
order: 1
---
The `net.udp.client` module sends messages to a the configured `host` and `port`. This module does not produce any messages and so using it as an `input` to a [route](/concepts/routes) would be pointless.
@@ -0,0 +1,12 @@
---
title: UDP Multicast
sidebar:
label: Multicast
order: 3
---
- **type**: `net.udp.multicast`
- **params**:
- **ip**
- **port**
- **bufferSize**
@@ -1,7 +1,8 @@
---
title: UDP Server
sidebar:
order: 4
label: Server
order: 2
---
The `net.udp.server` module emits a message for every incoming UDP datagram.
+8
View File
@@ -0,0 +1,8 @@
---
title: PSN Client
sidebar:
label: Client
order: 1
---
- **type**: `psn.client`
@@ -1,6 +1,7 @@
---
title: Redis Client
sidebar:
label: Client
order: 1
---
@@ -1,6 +1,7 @@
---
title: Serial Client
sidebar:
label: Client
order: 1
---
@@ -0,0 +1,13 @@
---
title: SIP Call Server
sidebar:
label: Server
order: 1
---
- **type**: `sip.call.server`
- **params**:
- **ip**
- **port**
- **transport**
- **userAgent**
@@ -0,0 +1,14 @@
---
title: SIP DTMF Server
sidebar:
label: Server
order: 1
---
- **type**: `sip.dtmf.server`
- **params**:
- **ip**
- **port**
- **transport**
- **userAgent**
- **separator**