fill in basic details for remaining processors/modules

This commit is contained in:
Joel Wetzell
2026-03-26 17:57:08 -05:00
parent 3a92370cdd
commit cc77a35377
30 changed files with 336 additions and 66 deletions
+13 -3
View File
@@ -4,8 +4,18 @@ sidebar:
label: Client
order: 1
---
This module connects to a [NATS](https://nats.io/) server and subscribes to a subject.
- **type**: `nats.client`
- **params**:
- **url**
- **subject**
- **url**: the URL of the NATS server to connect to (e.g. `nats://localhost:4222`)
- **subject**: the subject to subscribe to
### Example
Connect to a local NATS server and subscribe to the `events` subject
```
- id: natsClient
type: nats.client
params:
url: nats://localhost:4222
subject: events
```