Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MohammadMD1383/verve
https://github.com/MohammadMD1383/verve
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/MohammadMD1383/verve
- Owner: MohammadMD1383
- Created: 2022-09-11T05:14:30.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-16T18:54:18.000Z (almost 2 years ago)
- Last Synced: 2024-06-19T03:09:13.485Z (5 months ago)
- Language: V
- Size: 2.93 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-v - verve - Simple and fast static file server. (Applications / Command-line)
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
```