1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-29 02:29:06 -05:00
denoland-deno/http/README.md

29 lines
519 B
Markdown
Raw Normal View History

2019-01-15 11:09:55 -05:00
# http
2018-12-18 23:30:44 -05:00
2019-01-15 11:09:55 -05:00
A framework for creating HTTP/HTTPS server.
## Example
2018-12-18 23:30:44 -05:00
```typescript
import { serve } from "https://deno.land/std/http/server.ts";
const s = serve("0.0.0.0:8000");
2018-12-18 23:30:44 -05:00
async function main() {
for await (const req of s) {
req.respond({ body: new TextEncoder().encode("Hello World\n") });
}
2018-12-18 23:30:44 -05:00
}
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/std/http/file_server.ts --allow-net"
2018-12-18 23:30:44 -05:00
```