A simple command-line static file server written in the Go Programming Language.
An alternative to python -m SimpleHTTPServer
It's as simple as
$ go get -u github.com/GokulSrinivas/go-http
To serve the current directory on localhost:8080
, simply type
$ go-http
Options :-
-p : Specify the port number
-d : Specify subdirectory
$ go-http -p=1234
This serves the current directory to port 1234 of localhost
$ go-http -d=sample
This serves the subdirectory sample
to port 8080 of localhost
$ go-http -p=4141 -d=sample
This serves the subdirectory sample
to port 4141 of localhost
If you want to add features, improve them, or report issues, feel free to send a pull request!