1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-03 17:08:35 -05:00
denoland-deno/http/README.md

27 lines
462 B
Markdown
Raw Normal View History

2018-12-18 23:30:44 -05:00
# net
Usage:
```typescript
import { serve } from "https://deno.land/x/http/mod.ts";
2018-12-18 23:30:44 -05:00
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();
```
### File Server
A small program for serving local files over HTTP.
Add the following to your `.bash_profile`
```
alias file_server="deno https://deno.land/x/http/file_server.ts --allow-net"
2018-12-18 23:30:44 -05:00
```