1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-30 16:40:57 -05:00

Add file server to README

This commit is contained in:
Ryan Dahl 2018-12-11 13:33:52 -05:00
parent 7cd4d9f4ea
commit f1f1f39cd3

View file

@ -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"
```