Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/MohammadMD1383/verve


https://github.com/MohammadMD1383/verve

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# verve - V Serve

simple, fast and powerful static file server with no dependencies written in [V](vlang.io)

## usage

```bash
# 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 `` and serve it at `localhost:/`

## build from source

```bash
# compile
v .

# run
./verve -d -p
```