Windows | macOS | Linux |
---|---|---|
serve
starts a simple temporary static file server in your current directory and prints your IP address to share with colleagues.
It was based on a Gist by Paul Mach, but has evolved a lot.
Ctrl-C
localhost
to disable access from other devicesWe recommend installing serve
with one of the following package managers, because they provide you with functionality such as automatic updates, instant availability as command in the PATH
, easy removal, sandboxing (depending on the package manager) etc.
But alternatively you can always install serve
manually as well, see Manually.
The easiest way is to use the package manager Scoop:
scoop install serve
Another option is Chocolatey:
choco install serve
You can also have a look at the description in the Chocolatey Gallery on https://chocolatey.org/packages/serve/.
The easiest way is to use the package manager Homebrew:
brew tap philippgille/tap
brew install serve
Or in a single command:
brew install philippgille/tap/serve
The easiest way is to use the package manager Snap, which is installed by default on Ubuntu 16.04 and later:
snap install serve
You can also have a look at the description in the Snap Store on https://snapcraft.io/serve.
Note: Due to sandboxing by Snap,
serve
can only serve files in the user's$HOME
directory.
go get -u github.com/philippgille/serve
Note: Requires your
$GOPATH/bin
directory to be in yourPATH
, which is usually the case.
You can download the binary for your OS from the releases simply make it available as command in your PATH
. See Manual Installation for details.
serve
is also available as Docker image in the Docker Hub: https://hub.docker.com/r/philippgille/serve/
Please read docker/README.md for information on how to use it.
$ serve -h
Usage of serve:
-a string
Require basic authentication with the given credentials (e.g. -a "alice:secret")
-b string
Bind to (listen on) a specific interface. "0.0.0.0" is for ALL interfaces. "localhost" disables access from other devices. (default "0.0.0.0")
-d string
The directory of static files to host (default ".")
-h Print the usage
-p string
Port to serve on. 8080 by default for HTTP, 8443 for HTTPS (when using the -s flag) (default "8080")
-s Serve via HTTPS instead of HTTP. Creates a temporary self-signed certificate for localhost, 127.0.0.1, <hostname>.local, <hostname>.lan, <hostname>.home and the determined LAN IP address
-t Test / dry run (just prints the interface table)
-v Print the version
Press Ctrl+C
in the terminal to stop the server.
~/path/to/servable/files$ serve
Serving "." on all network interfaces (0.0.0.0) on HTTP port: 8080
Local network interfaces and their IP address so you can pass one to your colleagues:
Interface | IPv4 Address | IPv6 Address
---------------------|-----------------|----------------------------------------
lo | 127.0.0.1 | ::1
eth0 | |
wlan0 | 192.168.178.123 | fe80::e7b:fdaf:ae5d:3cfa
virbr0 | 192.168.122.1 |
br-8ef347e8a4e9 | 172.22.0.1 | fe80::42:c9ff:fed3:35a
docker_gwbridge | 172.21.0.1 |
docker0 | 172.17.0.1 | fe80::42:c6cf:fe3d:a554
veth0d522f4 | | fe80::307a:7fcf:fe3d:cba4
You probably want to share:
http://192.168.178.123:8080
When opening the URL http://192.168.178.123:8080
in a browser you see the directory you're serving. For example:
To build serve
by yourself:
cd
into the root directory of this repositorygo build
Note: The binaries in GitHub Releases are shrinked with additional Go linker flags and UPX
To also make serve
available as command in other directories:
$GOPATH/bin
to your PATH
if you haven't done that already when installing Gogo install
There are also build scripts for Windows and Linux for creating release artifacts (shrinked binaries for Windows, macOS and Linux):
build/build.ps1
build/build.sh
Note: They require Go and UPX to be installed
To build with a Docker container:
docker run --rm -v $(pwd):/go/src/github.com/philippgille/serve -w /go/src/github.com/philippgille/serve golang build/build.sh noupx
Or with UPX:
docker run --rm -v $(pwd):/go/src/github.com/philippgille/serve -w /go/src/github.com/philippgille/serve golang bash -c "apt update && apt install -y upx-ucl && build/build.sh"
Note: You have to use
${pwd}
instead of$(pwd)
on Windows.
For Scoop and Homebrew no packages need to be built. They use "manifests"/"formulae" and the binaries from GitHub Releases.
For releasing a new version, they need to be updated here:
For Snap a Git hook is set up in the Snapcraft dashboard to automatically build a new Snap on every commit, so for releasing a new version the file in this repository needs to be updated:
The Snap package can also be built manually. In the past this could even be done within a Docker container, but the official Snapcraft Docker image (according to the docs) is outdated (as of 2019-05-01) and doesn't contain the latest version of snapcraft
(and installing the latest version via snap
itself, as you'd do nowadays according to the official docs, doesn't work).
So now you can only build the Snap package on Linux, using the following steps:
snap install snapcraft --classic
snapcraft
Depending on the current serve
version and your CPU's architecture it will create a file like serve_0.3.2_amd64.snap
, which can manually be installed with snap install --dangerous serve_0.3.2_amd64.snap
.
The Chocolatey packages need to be uploaded manually to Chocolatey here. The package can be built with this script:
build\build-chocolatey.ps1
The Docker image can be built like this:
docker build -f docker/Dockerfile -t philippgille/serve .
python -m SimpleHTTPServer 8080
README.md
preview, directory zip download any many more features