Volker Mische
Volker Mische
Currently `tree()` is quite limited. @Gozala proposes at https://github.com/ipld/js-ipld/pull/191#discussion_r266613065 a more flexible API: > I find `tree` to be a confusing name especially since it just returns paths. I think...
The current API takes [multicodec codes](https://github.com/multiformats/js-multicodec) as parameter for formats. @Gozala proposes https://github.com/ipld/js-ipld/pull/191#discussion_r266603872 to pass in codec instances: > I find passing name / code of the codec counter intuitive...
Currently the API uses an Async Iterator interface to work with multiple items. Those operations will throw once an error occurs. There a cases where more advanced error case handling...
Create a document similar to https://github.com/libp2p/js-libp2p/blob/40739e96398fe5715068f5ecb12a5b973c172e2b/RELEASE.md that describes the release process. This issue is related to #136.
`ipld-resolver` has been renamed to `ipld`, hence all packages which depend on the old `ipld` won't receive any updates and it will be confusing as it looks like there's a...
There are some [examples in js-ipfs](https://github.com/ipfs/js-ipfs/tree/master/examples) using the DAG API]. Those should be run as part of the release process.
This is the result of some research in regards to passing JavaScript data into WebAssembly. Currently the best integration between a language that targets WASM and a language outside WASM...
I think only projects which are actively maintained (have a lead maintainer) should be under the official IPLD organisation. Other could be move e.g. to https://github.com/ipfs-shipyard. Potential candidates: - https://github.com/ipld/py-cid...
This issue summarizes what was discussed at the [IPFS Developer Meetings 2018] in Berlin at a discussion seesion about IPLD + Search. Please use this issues for all things related...
If you traverse a file containing CIDs, you might want to keep track of your current position. [Currently `read_bytes()`](https://github.com/multiformats/rust-cid/blob/afba8b69cc2a0cfdc879d46c064aafdfccc4b300/src/cid.rs#L97) only returns the new CID. As varints are involved, you cannot...