As the name, bullet is a simple and fast peer to peer file sharing tool written in Go.
git clone github.com/diwasrimal/bullet.git
cd bullet
go build ./cmd/bullet-server
go build ./cmd/bullet
Run the server
./bullet-server
Try send a file from one connection
$ ./bullet send large-video.webm
Use id MjeNToVd to share the file
Sent 849814137 bytes of data
$
And receive from other
$ ./bullet recv MjeNToVd > received.webm
$