如何创建 ipfs 存储库

How to create an ipfs repo

如何在没有 node.js 的情况下在 JavaScript 中创建 ipfs 存储库?

我在弄清楚如何创建内存存储以传递给 IpfsRepo class 时遇到了一些问题。

var repo = new IpfsRepo('example', ?)

我认为你需要使用它:https://www.npmjs.com/package/browser-ipfs

为此,您需要本地 IPFS 节点。

希望对你有所帮助

您将需要使用接口数据存储模块上可用的 MemoryStore:https://github.com/ipfs/interface-datastore/blob/master/src/memory.js

选择不同的 repo 存储后端是通过构造函数中的选项完成的。您可以在 new IPFSRepo() 上查看这些内容,请参阅示例:https://github.com/ipfs/js-ipfs-repo/blob/master/src/default-options-browser.js