我正在尝试使用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"误差
createServer启动一个HTTP服务器Ctl。createFactory将连接到。由于警告显示"服务器未在浏览器中实现",您需要在nodejs中运行它。从浏览器使用细胞毒性t淋巴细胞。