Sender view | Recipient view |
---|---|
Share files directly from your device's browser using IPFS — no cloud needed. Fast, free, easy file sharing for IPFS novices and veterans alike, available at https://share.ipfs.io.
Maintainers welcome! This repo is not currently under active development, but issues are monitored as part of overall IPFS project issue monitoring.
IPFS Share is a simple, easy-to-use tool for sharing files directly from your device without having to rely on third-party intermediaries like big corporate cloud providers. It's simple enough for anyone to use, but it's also a great under-the-hood demonstration of a common IPFS use case.
- Share and receive files using IPFS without needing to install a local node
- Upload or drag-and-drop individual files or entire directories
- For multiple-file uploads, generate share/download links for individual files or a single all-in-one link (downloads as a .tar file)
- Preview files in-browser (browser-supported formats only) before sharing or downloading
- Generates a QR code for share links for easy distribution
- Supports browser-specified language or manual choice of language via menu
- 100% mobile-friendly
- Supports installation as a mobile shortcut or desktop standalone app
- Includes brief explainers on how IPFS Share works, with links to more details for the curious
IPFS Share uses ipfs-provider to connect to IPFS via multiple providers. If local IPFS node is not available (for example, if you're using IPFS Share on your phone, or due to CORS), an instance of js-ipfs
is created.
The app itself is built using create-react-app
, so if you're comfortable building ordinary React web apps, you'll feel right at home in this codebase. Not familiar with React or create-react-app
? There are extensive docs available. Visual styling is done using Tachyons with additional IPFS flavor via ipfs-css
.
It's easy to get a local copy of IPFS Share up and running, even if you don't have a local IPFS node installed.
With node@14
and [email protected]
or greater installed, run:
> npm ci
To run IPFS Share in development mode:
> npm start
# You can now view ipfs-share-files in the browser.
# Local: http://localhost:3000
If you have a local IPFS node, you may also want to run it simultaneously. Use IPFS Desktop or start a daemon in the terminal:
> ipfs daemon
# API server listening on /ip4/127.0.0.1/tcp/5001
If you are running a local node, you must configure your IPFS API to allow cross-origin (CORS) requests from you development server and the share.ipfs.io domain.
You can either run the cors-config.sh script:
> ./cors-config.sh
Or do it manually:
> ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["http://localhost:3000", "https://share.ipfs.io"]'
> ipfs config --json API.HTTPHeaders.Access-Control-Allow-Methods '["PUT", "POST"]'
To reset the config to its default state, run:
> ipfs config --json API.HTTPHeaders {}
To validate the code using StandardJS, run:
> npm run lint
This is highly recommended to avoid automated CI failures when submitting a pull request to this repo.
To build IPFS Share for production to the build
folder:
> npm run build
We use CI for automatic deployments when merged to the following branches:
- Branch
main
is automatically deployed to dev.share.ipfs.io - Branch
production
is automatically deployed to share.ipfs.io
If you just want to PR main
to production
for go-live, there's a handy shortcut for that here.
Note that it's always a good idea to clear one's caches when double-checking a successful deployment.
The entire IPFS project, including IPFS Share, uses Transifex to help us source and manage translations. We very much welcome your contributions! Simply go to the project page on Transifex, create an account, pick a language and start translating.
On the app side, translations are stored in public/locales
, and the English version is the source of truth. Transifex automatically syncs new translations into that directory, so if you want to add translations, do so in Transifex — not this repo.
- Install and set up the command-line client (
tx
) - Download new translations from Transifex with
tx pull -a
- This creates/updates the files in
public/locales/*
that need to be committed - If a new language is created, remember to
- add it to
src/i18n.js
- run
npx -q @olizilla/lol public/locales > src/lib/languages.json
- add it to
- This creates/updates the files in
- Change only the source file (
public/locales/en/translation.json
) - Commit your changes; changes from the
main
branch are fetched by Transifex automatically once a day
To learn more about internationalization on the IPFS project as a whole, or contribute translations to other IPFS repos, check out ipfs/i18n.
- Update the "progress bar" circular progress bar to be a loading indicator for record publishing
- Disable share buttons when:
- no listening webrtc address
- CID is not published
- Remove protocol labs footer -> replace with "powered by Helia"
- Show the users what is actually happening in the background:
- Finding closest peers
- asking them to publish our provider record
- publish directory CID
- Make sure that when share.ipfs.io link with CID deeplink is shared, that browser retrieval client can get the file.
- On self:update, we need to check if the listening webrtc address has changed, and republish all "files" and "directory" if so.
- Ability to remove individual files from share list
- Fix downloading the files filename
- Add libp2p-devtools
Contributions are more than welcome! Check out the currently open issues and start hacking on anything that sounds interesting. Issues are labeled with a variety of tags to help you find a good fit — you may wish to start with the help-wanted
tag.
To contribute to IPFS in general, check out the wide variety of opportunities here.
The IPFS community believes that our mission is best served in an environment that is friendly, safe, and accepting, and free from intimidation or harassment. To that end, we ask that everyone involved in IPFS read and respect our code of conduct.