```ts import { serve } from 'https://deno.land/x/net@4457b04/http.ts' const s = serve('0.0.0.0:8000') async function main() { for await (const req of s) { req.respond({ body: new TextEncoder().encode('Hello')}) } } main() ``` 