ipfsd-ctl ライブラリを使用して、提供されたリモート エンドポイントを使用してブラウザから IPFS デーモンを生成しようとしています。
// Start a remote disposable node, and get access to the api
// print the node id, and stop the temporary daemon
const Ctl = require('ipfsd-ctl')
const port = 9090
const server = Ctl.createServer(port, {
ipfsModule: require('ipfs'),
ipfsHttpModule: require('ipfs-http-client')
},
{
js: {
ipfsBin: 'path/js/ipfs/bin'
},
go: {
ipfsBin: 'path/go/ipfs/bin'
},
})
const factory = Ctl.createFactory({
ipfsHttpModule: require('ipfs-http-client'),
remote: true,
endpoint: `http://localhost:${port}` // or you can set process.env.IPFSD_CTL_SERVER to http://localhost:9090
})
await server.start()
const ipfsd = await factory.spawn()
const id = await ipfsd.api.id()
console.log(id)
await ipfsd.stop()
await server.stop()
「ブラウザにサーバーが実装されていません」という警告と「POST http://localhost:9090/spawn net::ERR_CONNECTION_REFUSED」エラーが表示されます