Files
showbridge-docs/src/content/docs/modules/http/http-server.mdx
T
2026-06-01 18:03:47 -05:00

23 lines
413 B
Plaintext

---
title: HTTP Server
sidebar:
label: Server
order: 2
---
import SchemaInfo from '../../../../components/SchemaInfo.astro';
The `http.server` module emits a message for every HTTP request that is made to the server.
<SchemaInfo type="module" id="http.server"></SchemaInfo>
### Example
Start an HTTP server listening on port 3000
```yaml
- id: httpServer
type: http.server
params:
port: 3000
```