PhoneBridge
Send a file to your phone by opening a web address. No cable, no app, no account.
Free right now — no account, no card
Preview
1 interface design, then a screenshot of it running. Drag, scroll or use the arrows.
Free while we’re in preview
Get PhoneBridge
Send a file to your phone by opening a web address. No cable, no app, no account.
The Mac button is for Apple Silicon. On an older Intel Mac, get this one instead.
One file, both ways. Double-click it for the window. Run the same file from a command prompt with arguments and it behaves as the command-line tool, because the engine is inside it. Nothing else to download and nothing to keep beside it.
Early preview. The window has been built and run, but not yet on a real Windows PC or Mac, so expect rough edges. The engine underneath it is fully tested.
- One file — no installer
- Reaches only what you point it at
- Source code published below
Free while in preview. It isn’t signed yet, so Windows or macOS will ask you to confirm the first time you open it. At launch, PhoneBridge is included in every plan along with the rest of the range.
How the hand-off goes
phonebridge send report.pdf starts a small HTTP server on your computer and prints a URL. Open it in your phone’s browser and the file downloads. Range requests work, so a large file that drops out resumes rather than starting over. Point it at a directory instead and you get an index page with a link per file.
It works backwards too. phonebridge receive ~/Inbox serves a plain upload form; choose a file on the phone and it lands in that folder, with the name and size printed as it arrives.
--once shuts the server down after the first completed transfer, which is usually what you want. Otherwise it runs until Ctrl+C.
Two things to watch
The LAN address it prints is a best guess, the first non-loopback IPv4 it finds. With a VPN or several adapters that guess can be wrong, so pass --host with the address your phone can actually reach.
While it’s up, the server is unauthenticated. Anyone on the same network can reach the URL. That’s fine for a minute on your own Wi-Fi and a bad idea on café or office guest networks.
There’s no MTP or iTunes-protocol transfer here. It’s HTTP over the network you’re both already on.
Reading on the job itself
- How to send a file from your phone to your computer Run a small web server on the computer and open its address on the phone. The file goes straight across you...
Advanced & technical details Command-line builds, source code, checksums and a recorded session — for developers and IT teams
A working CLI prototype of the "get a file onto your phone" core: a local-network HTTP bridge to send a file/folder to your phone's browser or receive an upload from it, no cables/cloud/app needed. Real iPhone/Android device-protocol transfer (MTP/AFC) and messages/photos/music export need platform-specific device libraries and are on the roadmap.
Naming status
Working name only — brand verdict **AVOID** (Very High). Collision: PhoneBridge. Rename completely.
What it draws on
Existing paid software whose best ideas shaped this program: iMazing, Wondershare MobileTrans, TouchCopy, Droid Transfer.
Command line
There is nothing extra to install. The program you download is the command-line tool as well: give it arguments instead of double-clicking it and it runs as one, with its output on your terminal. The standalone builds below are the same engine on its own, for machines where you would rather not ship a window at all.
phonebridge - local-network HTTP file bridge (no cables, no cloud)
Usage:
phonebridge send <path> [--port 0] [--once] [--host <addr>]
phonebridge receive <destdir> [--port 0] [--once] [--host <addr>]
phonebridge help
Commands:
send Serve a file or directory over HTTP for a phone to download.
receive Serve an upload form over HTTP for a phone to upload files to.
Run "phonebridge send -h" or "phonebridge receive -h" for command help.
Recorded from the shipped binary, not written by hand.
Source
Every file the program is built from:
console.go · console_test.go · guided.go · main.go · receive_test.go
SHA-256 checksums · build instructions & scope notes · full build plan