verve - V Serve
September 11, 2022 ยท View on GitHub
simple, fast and powerful static file server with no dependencies written in V
usage
# serve current directory
verve
# serve ./prod/ directory
# use -d or --dir
verve -d prod
# set port other than 7777
# use -p or --port
verve -p 3000
by default verve will try to find index.html in the root of <dir> and serve it at localhost:<port>/
build from source
# compile
v .
# run
./verve -d </path/to/...> -p <port>