Skip to content

Latest commit

 

History

History
62 lines (43 loc) · 1.45 KB

README.zh-cn.md

File metadata and controls

62 lines (43 loc) · 1.45 KB

DSF - 极简文件服务

Go Reference Go Report Card

English | 中文

一个非常简单的HTTP文件服务,可以把本地的文件暴露到局域网上。

动机

虽然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:3000
listening on: http://fe80::1234:1e11:abec:5678:3000

安装

适用于Linux, Mac 和 Windows预编译二进制可以在这里找到:https://github.com/nanmu42/dsf/releases/

Gophers 可以这样安装:

go install github.com/nanmu42/dsf@latest

使用愉快!

License

MIT