百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
F

filepizza

> 前端框架
开源

:pizza: 通过浏览器进行点对点文件传输

10.1K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

:pizza: 通过浏览器进行点对点文件传输

Peer-to-peer file transfers in your browser

*Cooked up by [Alex Kern](https://kern.io) & [Neeraj Baid](https://github.com/neerajbaid) while eating Sliver @ UC Berkeley.* Using [WebRTC](http://www.webrtc.org), FilePizza eliminates the initial upload step required by other web-based file sharing services. Because data is never stored in an intermediary server, the transfer is fast, private, and secure. A hosted instance of FilePizza is available at [file.pizza](https://file.pizza). ## What's new with FilePizza v2 * A new UI with dark mode support, now built on modern browser technologies. * Works on most mobile browsers, including Mobile Safari. * Transfers are now directly from the uploader to the downloader's browser (WebRTC without WebTorrent) with faster handshakes. * Uploaders can monitor the progress of the transfer and stop it if they want. * Better security and safety measures with password protection and reporting. * Support for uploading multiple files at once, which downloaders receive as a zip file. * Streaming downloads with a Service Worker. * Out-of-process storage of server state using Redis. ## Development ``` $ git clone https://github.com/kern/filepizza.git $ pnpm install $ pnpm dev $ pnpm build $ pnpm start ``` ## Running with Docker ``` $ pnpm docker:build $ pnpm docker:up $ pnpm docker:down ``` ## Stack * Next.js * Tailwind * TypeScript * React * PeerJS for WebRTC * View Transitions * Redis (optional) ## Configuration The server can be customized with the following environment variables: - `REDIS_URL` – Connection string for a Redis instance used to store channel metadata. If not set, FilePizza falls back to in-memory storage. - `COTURN_ENABLED` – When set to `true`, enables TURN support for connecting peers behind NAT. - `TURN_HOST` – Hostname or IP address of the TURN server. Defaults to `127.0.0.1`. - `TURN_REALM` – Realm used when generating TURN credentials. Defaults to `file.pizza`. - `STUN_SERVER` – STUN server URL to use when `COTURN_ENABLED` is disabled. Defaults to `stun:stun.l.google.com:19302`. - `PEERJS_HOST` – Hostname or IP address to the self-hosted PeerJS server. Defaults to `0.peerjs.com`. - `PEERJS_PATH` – Path to self-hosted PeerJS server. Defaults to `/`. ## FAQ **How are my files sent?** Your files are sent directly from your browser to the downloader's browser. They never pass through our servers. FilePizza uses WebRTC to send files. This requires that the uploader leave their browser window open until the transfer is complete. **Can multiple people download my file at once?** Yes! Just send them your short or long URL. **How big can my files be?** As big as your browser can handle. **What happens when I close my browser?** The URLs for your files will no longer work. If a downloader has completed the transfer, that downloader will continue to seed to incomplete downloaders, but no new downloads may be initiated. **Are my files encrypted?** Yes, all WebRTC communications are automatically encrypted using public-key cryptography because of DTLS. You can add an optional password to your upload for an extra layer of security. ## License & Acknowledgements FilePizza is released under the [BSD 3-Clause license](https://github.com/kern/filepizza/blob/main/LICENSE). A huge thanks to [iblowyourdesign](https://dribbble.com/iblowyourdesign) for the pizza illustration.

GitHub Issues· 0 开放

在 GitHub 查看全部

暂无开放 Issues,或尚未同步最近议题。

核心特点

  • •A new UI with dark mode support, now built on modern browser technologies.
  • •Works on most mobile browsers, including Mobile Safari.
  • •Transfers are now directly from the uploader to the downloader's browser (WebRTC without WebTorrent) with faster handshakes.
  • •Uploaders can monitor the progress of the transfer and stop it if they want.
  • •Better security and safety measures with password protection and reporting.
  • •Support for uploading multiple files at once, which downloaders receive as a zip file.
  • •Streaming downloads with a Service Worker.
  • •Out-of-process storage of server state using Redis.
  • •Tailwind
  • •TypeScript

> 标签

TypeScriptreactwebrtc

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类前端框架
定价开源

> 相关工具

R
React
用于构建用户界面的 JavaScript 库
V
Vue.js
渐进式 JavaScript 框架
N
Next.js
基于 React 的全栈 Web 框架