ipfs-companion
Browser extension that routes ipfs:// addresses and content-addressed websites through your own local IPFS node
File Explorer
Download Latest Version (.zip)- bug_report.md
- config.yml
- feature_request.md
- ci.yml
- e2e.yml
- generated-pr.yml
- stale.yml
- tx-pull.yml
- CODEOWNERS
- config.yml
- dependabot.yml
- config
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- messages.json
- ipfs-logo-off_128.png
- ipfs-logo-off_19.png
- ipfs-logo-off_38.png
- ipfs-logo-on_128.png
- ipfs-logo-on_19.png
- ipfs-logo-on_38.png
- ipfs-logo-off.svg
- ipfs-logo-on.svg
- boxo.svg
- content-addressing.webp
- content-routing.webp
- how-ipfs-works.webp
- ipfs-specs.svg
- kubo.svg
- libp2p.svg
- stars.png
- why-ipfs.webp
- background.js
- linkifyDOM.js
- index.html
- index.js
- invalid-address.css
- request.css
- request.html
- request.js
- index.html
- index.js
- page.js
- store.js
- welcome.css
- ContextMenus.ts
- index.js
- internalTabReloader.js
- localGatewayReloader.js
- reloaderBase.js
- webUiReloader.js
- external.js
- index.js
- baseRegexFilter.ts
- blockOrObserve.ts
- commonPatternRedirectRegexFilter.ts
- namespaceRedirectRegexFilter.ts
- subdomainRedirectRegexFilter.ts
- constants.js
- context-menus.js
- copier.js
- dnslink.js
- http-proxy.js
- inspector.js
- invalid-address.js
- ipfs-companion.js
- ipfs-import.js
- ipfs-path.js
- ipfs-request.js
- notifier.js
- on-installed.js
- on-uninstalled.js
- options.js
- precache.js
- quick-import-sources.js
- runtime-checks.js
- state.js
- uri-to-multiaddr.js
- api-form.js
- dnslink-form.js
- experiments-form.js
- file-import-form.js
- gateways-form.js
- global-toggle-form.js
- ipfs-node-form.js
- redirect-rule-form.js
- reset-form.js
- options.css
- options.html
- options.js
- page.js
- store.js
- switch-toggle.css
- switch-toggle.js
- browser-action.css
- context-actions.js
- gateway-status.js
- header.js
- icon.js
- index.html
- index.js
- ipfs-version.js
- nav-header.js
- nav-item.js
- options-icon.js
- page.js
- power-icon.js
- redirect-icon.js
- store.js
- tools-button.js
- tools.js
- version-update-icon.js
- heartbeat.css
- logo.js
- quick-import.css
- quick-import.html
- quick-import.js
- recovery.css
- recovery.html
- recovery.js
- choo-html.d.ts
- companion.d.ts
- i18n.js
- manifest.chromium.json
- manifest.common.json
- manifest.firefox-beta.json
- manifest.firefox.json
- access-control-allow-all.sh
- download-release-artifacts.sh
- update-manifest.sh
- CONTRIBUTING.md
- DEVELOPER-NOTES.md
- dnslink.md
- LOCALIZATION-NOTES.md
- MV3.md
- node-types.md
- README.md
- RELEASE-PROCESS.md
- x-ipfs-path-header.md
- index.js
- fetch-unbranded.sh
- generate-png-icons.sh
- merge-manifest.js
- new-locale-key.sh
- rename-artifacts.js
- linkify-demo.html
- global-setup.js
- ipfs-companion.test.js
- ContextMenus.test.ts
- reloaders.test.js
- blockOrObserve.test.ts
- commonPatternRedirectRegexFilter.test.ts
- declarativeNetRequest.mock.ts
- namespaceRedirectRegexFilter.test.ts
- subdomainRedirectRegexFilter.test.ts
- dnslink.test.js
- invalid-address.test.js
- ipfs-companion.test.js
- ipfs-import.test.js
- ipfs-path.test.js
- ipfs-request-dnslink.test.js
- ipfs-request-gateway-recover.test.js
- ipfs-request-gateway-redirect.test.js
- ipfs-request-late-dnslink-redirect.test.js
- ipfs-request-protocol-handlers.test.js
- ipfs-request-recover-redirect-miss.test.js
- ipfs-request-subresources.test.js
- ipfs-request-workarounds.test.js
- options.test.js
- quick-import-sources.test.js
- runtime-checks.test.js
- state.test.js
- is-mv3-testing-enabled.js
- mock-i18n.js
- mv3-test-helper.ts
- vitest-setup.js
- .dockerignore
- .editorconfig
- .gitattributes
- .gitignore
- .nvmrc
- .release-please-manifest.json
- AGENTS.md
- CHANGELOG.md
- docker-compose.e2e.yml
- Dockerfile
- eslint.config.js
- LICENSE
- Makefile
- package-lock.json
- package.json
- playwright.config.js
- PRIVACY-POLICY.md
- README.md
- release-please-config.json
- rspack.config.js
- SECURITY.md
- tsconfig.json
- tsconfig.typecheck.json
- vitest.config.js
# Installation Guide
1. Get the code
git clone https://github.com/ipfs/ipfs-companion
Downloads the entire project code from GitHub to your computer.
cd ipfs-companion
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose -f docker-compose.e2e.yml up -d --build
Runs the command against the services defined in the compose file.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Node.js
EasyPrerequisites
$ npm run dev-build chromium
Starts the development/run server.
$ npm run dev-build firefox # firefox:nightly works too!
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
Pulled directly from this repo's README.
4. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
