everest is the static file server with no dependencies.
The most unique feature of everest is the rebuild-with command to import the specified files into the binary.
By execute the command once, everest can serve imported files in a single binary.
Installation
Download from GitHub Releases.
From source
$ go get -d github.com/mpppk/everest
$ make install
Usage
serve static files
$ everest path/to/files
Files are served on http://localhost:3000
Import files to binary
Note: under the hood, rebuild-with command use go build, so you need to install Go compiler first.
$ everest rebuild-with path/to/files
$ everest # if you execute everest with no arguments, imported files are served.
Embedded files are served on http://localhost:3000
Credits