mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-08 07:03:39 +00:00
23 lines
413 B
Plaintext
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
|
|
```
|