ipfs-webui
ipfs-webui copied to clipboard
A frontend for an IPFS Kubo node.
https://webui.ipfs.io is unable to use IPFS HTTP API, because all requests are blocked as it is considered mixed content. There is a known Safari bug report to allow requests to...
ipfs-webui had admin-level access to IPFS node (minus private keys, which are not exposed over HTTP). Would not hurt to add a basic warning when a less technical user is...
**Is your feature request related to a problem? Please describe.** Currently, a user doesn't know if their node is directly reachable for other nodes of the network (by UPnP or...
At the moment webui is constantly polling following HTTP API endpoints: - [/api/v0/stats/bw](https://docs.ipfs.io/reference/http/api/#api-v0-bitswap-stat) - [/api/v0/swarm/peers](https://docs.ipfs.io/reference/http/api/#api-v0-swarm-peers) - [/api/v0/repo/stat](https://docs.ipfs.io/reference/http/api/#api-v0-repo-stat) - [/api/v0/config/show](https://docs.ipfs.io/reference/http/api/#api-v0-config-show) This is has few unfortunate consequences: 1. Increases pressure on network...
If your run ```console ipfs daemon --offline ``` then the API responds to requests for `/api/v0/stats/bw` with a `400` status code and the body: ```json {"Message":"this command must be run...
Alex noted how partial reads done during preview of text files may lead to leaking resources https://github.com/ipfs-shipyard/ipfs-webui/pull/1646#issuecomment-699043284 The whole point here is that we want to avoid unnecessary reads because...
As originally discussed in https://github.com/ipfs-shipyard/ipfs-desktop/issues/1639: Current practice of downloading multiple files/folders results in the user receiving a .tar.gz file. Investigate and possibly implement the following to improve overall UX: -...
See conversation on https://github.com/ipfs-shipyard/ipfs-webui/pull/1599#issuecomment-689478820: - We want to disable native right click action and only display webui ones when interacting with breadcrumbs or file list - There should be only...
Bug discovered by @lidel in https://github.com/ipfs-shipyard/ipfs-webui/pull/1577#issuecomment-682939157: When I shut down my node and open Files screen (without reloading the page), it displays connection error AND import drawer is expanded with...
Expose API, Allow CORS: ``` "API": { "HTTPHeaders": { "Access-Control-Allow-Credentials": [ "true" ], "Access-Control-Allow-Methods": [ "PUT", "GET", "POST" ], "Access-Control-Allow-Origin": [ "*" ] } }, "Addresses": { "API": "/ip4/0.0.0.0/tcp/5001", "Announce":...