mirror of
https://github.com/denoland/deno.git
synced 2024-11-27 16:10:57 -05:00
6a7c01c2f0
Original: f574e3c6db
18 lines
395 B
Markdown
18 lines
395 B
Markdown
# Deno Networking Libraries
|
|
|
|
[![Build Status](https://travis-ci.com/denoland/net.svg?branch=master)](https://travis-ci.com/denoland/net)
|
|
|
|
Usage:
|
|
|
|
```typescript
|
|
import { serve } from "https://deno.land/x/net/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 World\n") });
|
|
}
|
|
}
|
|
|
|
main();
|
|
```
|