This commit is contained in:
Joel Wetzell
2026-05-17 21:12:04 -05:00
parent 69bc31d3f1
commit 8e6cd58006
82 changed files with 642 additions and 450 deletions
@@ -1,20 +1,23 @@
---
title: HTTP Server
sidebar:
label: Server
order: 2
label: Server
order: 2
---
The `http.server` module emits a message for every HTTP request that is made to the server.
- **type**: `http.server`
- **params**:
- **port**: TCP port to listen for HTTP requests on
- **port**: TCP port to listen for HTTP requests on
### Example
Start an HTTP server listening on port 3000
```yaml
- id: httpServer
type: http.server
params:
port: 3000
```
```