0

我想创建 orbitdb 包

在 github 上的 README 中,我看到了这个例子

npm install orbit-db ipfs

const IPFS = require('ipfs')
const OrbitDB = require('orbit-db')

我正在使用 es6importgithub上的浏览​​器示例

// Import IPFS module
import IPFS from 'ipfs'

// Import OrbitDB module from 'orbit-db', eg. directory to its package.json
import OrbitDB from '../../..'

但这是行不通的

我构建 es5 模块

npm run build:es5

它是构建而不是 es5 模块

4

1 回答 1

1

要构建示例,请运行以下命令

npm install
npm run build:examples

之后,您可以examples/browser/browser-webpack-example/index.html在浏览器中打开。

编辑:我们更新了文档以运行示例

于 2021-03-20T18:33:46.667 回答