summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-12-11 13:33:52 -0500
committerRyan Dahl <ry@tinyclouds.org>2018-12-11 13:34:10 -0500
commita691d9257b89cc210de6371138508c76aa288aba (patch)
tree5b5d817ea0bbc9e87fcd97653a2fc69fa5bf9de5 /README.md
parent626cef41b60b3f1802655fd5ea4f638db4934466 (diff)
Add file server to README
Original: https://github.com/denoland/deno_std/commit/f1f1f39cd3618824534d16b2588e97ecbc6c2681
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index ee6009304..3963e19a6 100644
--- a/README.md
+++ b/README.md
@@ -16,3 +16,13 @@ async function main() {
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/net/file_server.ts --allow-net"
+```
+