Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/6b70/peerbeam
Fast and secure p2p file transfer powered by WebRTC 🚀
https://github.com/6b70/peerbeam
file-transfer webrtc
Last synced: about 2 months ago
JSON representation
Fast and secure p2p file transfer powered by WebRTC 🚀
- Host: GitHub
- URL: https://github.com/6b70/peerbeam
- Owner: 6b70
- License: mit
- Created: 2024-09-03T13:39:56.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-03T01:34:05.000Z (4 months ago)
- Last Synced: 2024-10-25T11:47:24.819Z (3 months ago)
- Topics: file-transfer, webrtc
- Language: Go
- Homepage:
- Size: 51.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pion - 6b70/peerbeam - Fast and secure p2p file transfer powered by WebRTC 🚀 (DataChannel)
README
# PeerBeam
https://github.com/user-attachments/assets/9579b274-1067-42c8-b8c9-816e3168f6b4
`PeerBeam` is a tool for fast and secure file transfer between computers.
- **direct file transfer** between two computers
- **WebRTC** for secure, p2p communication
- **cross-platform**: works on Windows, Linux, macOS
- **no port-forwarding** or network config needed
- supports **ipv6** and **ipv4**## Installation
[Install Go](https://golang.org/dl/) then run:
```
go install github.com/6b70/peerbeam@latest
```
This will install the `peerbeam` binary to your `$GOPATH/bin`.## Usage
To send a file run:
```bash
peerbeam send ...
```To receive files run:
```bash
peerbeam receive
```You can also query a STUN server:
```bash
peerbeam stun
```## References
* [pion/webrtc](https://github.com/pion/webrtc)
* [pion/sctp](https://github.com/pion/sctp)
* [schollz/croc](https://github.com/schollz/croc)