You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For read-only access to a publicly hosted Icechunk repository, use the built-in fetch-based storage. This works on both native and WASM builds, making it the easiest way to open a repository in the browser:
The repository must be on S3-compatible storage with public read access and XML listing enabled. `createFetchStorage` uses the browser `fetch` API under the hood, so it works in any environment where `fetch` is available.
64
+
49
65
### Custom Storage Backends
50
66
51
67
For WASM builds (or any environment where the built-in backends aren't suitable), you can provide your own storage implementation in JavaScript using `Storage.newCustom()`:
@@ -86,6 +102,18 @@ Install the package with the `--cpu=wasm32` flag to get the WASM binary:
86
102
npm install @earthmover/icechunk --cpu=wasm32
87
103
```
88
104
105
+
To open a public repository in the browser, use fetch storage:
0 commit comments