Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.1 KB

README.md

File metadata and controls

35 lines (22 loc) · 1.1 KB

serve ⚡️

A simple binary written in go for serving your current directory as static content over HTTP from the terminal. Just run go get github.com/integrii/serve and use.

Free, open source, fast, and simple.

serve

Installation

  • Have go installed (duh?)
  • Install with go: go get github.com/integrii/serve
  • If your $PATH environment variable has $GOBIN in it, then you can now simply use serve
    • Otherwise, you will need to run $GOBIN/serve or if you don't even have $GOBIN set, you must run $GOPATH/bin/serve

Usage

Options

Run serve --help to see command line options:

Usage of serve:
  -l string
        The address for the server to listen on. Examples: :80, 127.0.0.1:8000 (default ":8000")
  -p string
        The path for the server to serve. (default "/Current/directory")