https://github.com/ripta/safron
Quick-and-dirty static file web server — no, no, I assure you, it's not "saffron"
https://github.com/ripta/safron
Last synced: 24 days ago
JSON representation
Quick-and-dirty static file web server — no, no, I assure you, it's not "saffron"
- Host: GitHub
- URL: https://github.com/ripta/safron
- Owner: ripta
- License: mit
- Created: 2015-09-08T15:50:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-04T05:22:30.000Z (about 1 year ago)
- Last Synced: 2025-05-07T22:56:10.495Z (about 1 month ago)
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# safron
[](http://drone.app.armada.routed.cloud/ripta/safron)
Quick-and-dirty static file web server, which you can obtain from
[the releases page](https://github.com/ripta/safron/releases), or
build it yourself:```
$ brew install go
$ go get github.com/ripta/safron
```By default, it make the current working directory available on port 8080. More
options are available through `-h`.Example:
```
$ pwd
/Users/rpasay/Public
$ safron
2015/10/27 17:24:13 Safron version 1
2015/10/27 17:24:13 Listening to http://0.0.0.0:8080
2015/10/27 17:24:13 Serving /Users/rpasay/Public
2015/10/27 17:24:13 ^C to exit
```