diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2020-05-07 00:21:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 18:21:13 -0400 |
commit | 34ec3b225425cecdccf754fbc87f4a8f3728890d (patch) | |
tree | 35db52bf25ccf64425692116197df61a69ea8838 /docs/examples/fileserver.md | |
parent | 846c049c9b3ab36d0893292a204c4d0a18de4c8e (diff) |
Multi page manual (#5110)
Diffstat (limited to 'docs/examples/fileserver.md')
-rw-r--r-- | docs/examples/fileserver.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/examples/fileserver.md b/docs/examples/fileserver.md new file mode 100644 index 000000000..3ed9d90e7 --- /dev/null +++ b/docs/examples/fileserver.md @@ -0,0 +1,22 @@ +## File server + +This one serves a local directory in HTTP. + +```bash +deno install --allow-net --allow-read https://deno.land/std/http/file_server.ts +``` + +Run it: + +```shell +$ file_server . +Downloading https://deno.land/std/http/file_server.ts... +[...] +HTTP server listening on http://0.0.0.0:4500/ +``` + +And if you ever want to upgrade to the latest published version: + +```shell +$ file_server --reload +``` |