mirror of
https://github.com/denoland/deno.git
synced 2024-12-25 08:39:09 -05:00
e97fdcac47
Original: 90cbca40be
13 lines
327 B
Markdown
13 lines
327 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");
|
|
for await (const req of s) {
|
|
req.respond({ body: "Hello World\n" });
|
|
}
|
|
```
|