如何在不使用node.js的情况下在JavaScript中创建ipfs repo?
我在确定如何创建内存存储以传递到IpfsRepo
类时遇到了一些麻烦。
var repo = new IpfsRepo('example', ?)
答案 0 :(得分:1)
答案 1 :(得分:1)
您需要使用interface-datastore模块上提供的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