move HTTP module to own section

This commit is contained in:
Joel Wetzell
2025-12-11 19:37:45 -06:00
parent b8853d6950
commit a6debbc175
7 changed files with 13 additions and 8 deletions
@@ -0,0 +1,19 @@
---
title: HTTP Server
sidebar:
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
### Example
Start an HTTP server listening on port 3000
```
- id: httpServer
type: http.server
params:
port: 3000
```