Temporary Local Folder Sharing Without Uploads: When It Makes Sense Instead of Drive, nginx, or croc
The repeated handoff problem
A folder is already on your machine.
Someone else needs to open it in a browser.
That should be a small task, but it often turns into a heavier workflow:
- zip the folder
- upload it somewhere
- wait for sync
- fix permissions
- explain where the right files are
- delete or forget the upload later
If this happens once, the manual workaround is fine.
If it happens every week with client deliverables, build outputs, generated docs, release artifacts, or reports, the friction starts to compound.
That is the narrow problem Local Bridge is built around: temporary local folder sharing without uploading the folder first.
What "temporary sharing" means
Temporary sharing is not the same as permanent hosting.
It is the moment where:
- the folder already exists locally
- the recipient only needs browser access
- the share can disappear after the review
- setting up infrastructure would be too much for the job
That could be a dist/ folder, generated documentation, a report export, a design handoff folder, or a release artifact directory.
In those cases, the goal is not to create another storage location. The goal is to let the other person inspect or download files quickly, then stop the share.
Why the usual tools feel awkward
The common alternatives are all useful. They are just optimized for different jobs.
Google Drive and Dropbox are good when files should live in cloud storage. They are less ideal when the files are local, temporary, and you only need one quick review.
nginx is excellent for long-running hosting and reverse proxy control. It is heavy when the job is "let this person inspect this folder for the next 30 minutes."
croc is great for CLI-to-CLI transfer. It is less useful when the recipient is non-technical or should just open a browser.
python -m http.server is convenient on a LAN, but public access, HTTPS, password protection, and shutdown behavior become your problem.
So the question is not "which tool is best?"
The better question is: what job are you trying to finish?
The Local Bridge workflow
Local Bridge is a paid CLI that turns a local folder into a browser-friendly URL.
The basic workflow is intentionally boring:
localbridge --password "review123" ./dist
You point it at the folder you intend to expose. The recipient opens a browser link, enters the password if you set one, and browses or downloads the files.
For public access, Local Bridge uses an outbound Cloudflare tunnel. That means you are not asking the user to configure router port forwarding or open inbound ports. The files still come from your machine when they are requested.
For local-only use, LAN sharing is available when the recipient is on the same network.
When this is a good fit
Local Bridge is worth considering when the workflow repeats.
Good fits:
- a freelancer sending weekly client deliverables
- a developer sharing a
dist/orbuild/folder for quick review - an agency sending a review folder to a client
- a team passing around generated reports or artifacts
- someone sharing generated docs before publishing them
- a LAN handoff where the recipient should use a browser
Weak fits:
- production hosting
- cloud backup
- permanent file storage
- team document governance
- one-time file transfer between two technical users
- sensitive enterprise sharing that needs full audit controls
That narrowness is intentional. The product is not trying to replace every file sharing tool.
Trust boundaries matter
Local files plus an executable plus a public tunnel is a category where trust has to be handled carefully.
The safe mental model is:
- expose only the folder you choose
- use
.lbignoreto exclude files that should not be shared - use
--passwordfor shared sessions - use expiry when the share should not stay open
- stop the share when the handoff is done
- verify binaries before running them
Local Bridge publishes proof material for this reason: architecture notes, security boundaries, checksums, signatures, and VirusTotal scan details are available on the proof page.
This is controlled temporary sharing, not enterprise file governance.
A quick comparison
| Job | Better tool |
|---|---|
| Permanent website or reverse proxy | nginx |
| Cloud storage and sync | Google Drive or Dropbox |
| CLI-to-CLI transfer | croc |
| LAN-only quick folder view | python -m http.server may be enough |
| Temporary local folder to browser link | Local Bridge |
The overlap is real, but the jobs are different.
If the folder should live in the cloud, upload it.
If the folder should be hosted permanently, host it properly.
If the folder is local and someone just needs browser access for a short handoff, a temporary sharing tool can be the smaller answer.
The packaging question
The honest packaging question is not "can this be built with existing tools?"
Of course it can. Developers can wire together a local server, authentication, ignore rules, a tunnel, shutdown handling, and a simple file browser.
The real question is whether the workflow happens often enough that you want the boring packaged version.
If this only happens once a year, you probably do not need a paid tool.
If this happens every week across builds, docs, artifacts, reports, or client folders, the repeated handoff tax may be worth removing.
Try the workflow
Start with the docs and proof before deciding whether the workflow fits:
If the workflow fits, Local Bridge is one packaged version of this idea. Use the quickstart and proof page first if you want to verify the trust model before deciding whether it belongs in your workflow.
Try Local Bridge
One command. Password-protected. No uploads.