DSF – 极简文件服务(Golang),简单的软件解决简单的需求
資深大佬 : nanmu42 0
DSF – 极简文件服务
一个非常简单的 HTTP 文件服务,可以把本地的文件暴露到局域网上。
仓库地址
https://github.com/nanmu42/dsf
动机
虽然python3 -m http.server
也能用,但是…
- 有时我没法接受它单线程一次只能服务一个文件的特性;
dsf
提供复制粘贴友好的宿主机 IP 和端口号,这样我就不用自己去查询了。
用法
$ dsf -h dsf 的用法: -port int 监听端口 (默认 8080) -root string 文件根目录 (默认 "./")
分享当前工作目录:
$ dsf listening on: http://127.0.0.1:8080 listening on: http://::1:8080 listening on: http://192.168.0.6:8080 listening on: http://fe80::1234:1e11:abec:5678:8080~~~~
在特定端口分享特定目录:
$ dsf -port 3000 -root ~/images listening on: http://127.0.0.1:3000 listening on: http://::1:3000 listening on: http://192.168.0.6:8080 listening on: http://fe80::1234:1e11:abec:5678:8080
安装
适用于 Linux, Mac 和 Windows 预编译二进制可以在这里找到: https://github.com/nanmu42/dsf/releases/
Gophers 可以这样安装:
go install github.com/nanmu42/[email protected]
使用愉快!
License
MIT
大佬有話說 (35)