Verification
Checks used to confirm the TCP server and website are working.
01
bun test02
bun x tsc --noEmit03
curl http://127.0.0.1:8080/health04
curl -X POST http://127.0.0.1:8080/echo -H "Content-Type: text/plain" -d "hello from verification"bun testValidates request line parsing, header normalization, request completion, routing, and response serialization.bun x tsc --noEmitEnsures the TCP server, parser, website, and helpers compile under strict TypeScript settings.HTTP smoke testChecks GET /, GET /health, GET /about, and POST /echo against the running Bun server.UDP smoke testSends a datagram to the Bun UDP listener and expects an ack response.