Skip to content
This repository has been archived by the owner on Nov 5, 2020. It is now read-only.

Latest commit

 

History

History
23 lines (14 loc) · 808 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 808 Bytes

serve

Simple Go file server for command line development use, a la Python's SimpleHTTPServer.

Installation

go get -u github.com/fogleman/serve

Run the Server

By default, serves the current working directory on port 8000. If $GOPATH/bin is on your PATH, you can run it anywhere.

$ serve

http://localhost:8000/

Command-line Arguments

Flag Default Description
-port 8000 port to listen on
-dir "." directory to serve
-cors false true to enable CORS (via Access-Control-Allow-Origin: *)