mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-08 07:03:39 +00:00
24 lines
416 B
Plaintext
24 lines
416 B
Plaintext
---
|
|
title: NATS Server
|
|
sidebar:
|
|
label: Server
|
|
order: 2
|
|
---
|
|
import SchemaInfo from '../../../../components/SchemaInfo.astro';
|
|
|
|
This module starts a NATS server that listens for incoming connections.
|
|
|
|
<SchemaInfo type="module" id="nats.server"></SchemaInfo>
|
|
|
|
### Example
|
|
|
|
Start a local NATS server listening on port 5555
|
|
|
|
```yaml
|
|
- id: natsServer
|
|
type: nats.server
|
|
params:
|
|
ip: 127.0.0.1
|
|
port: 4222
|
|
```
|