start fleshing out documentation sections

This commit is contained in:
Joel Wetzell
2025-12-03 22:58:40 -06:00
parent d5664c7e84
commit 07a45776da
18 changed files with 264 additions and 21 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**: `net.http.server`
- **params**:
- **port**: TCP port to listen for HTTP requests on
### Example
Start an HTTP server listening on port 3000
```
- id: httpServer
type: net.http.server
params:
port: 3000
```