From f1f1f39cd3618824534d16b2588e97ecbc6c2681 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 11 Dec 2018 13:33:52 -0500 Subject: [PATCH] Add file server to README --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index ee6009304f..3963e19a6b 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" +``` +