如何使用 Nodejs 通过 ipfs 下载文件?

How download file via ipfs using Nodejs?

我正在尝试在使用 NodeJS 制作的应用程序中实施 IPFS。我可以添加文件并获取 CID,但如果我尝试使用 ipfs get <CID> 下载它,它不会下载任何内容。任何想法可以是什么?我使用此代码启动 IPFS 节点:

const IPFS = require('ipfs');
// Spawn your IPFS node \o/
const node = new IPFS();

node.on('ready', () => {
    node.id((err, id) => {
        if (err) {
            return console.log(err)
        }
        console.log(id)
    })

    let files = [
        {
            path: '/home/my/file.jpg',
            content: File.read('/home/my/file.jpg', null)
        }
    ]
    node.files.add(files, function (err, files) {
        if (err) {
            console.log(err);
        } else {
            console.log(files)
        }
    })
})

当您启动节点应用程序时,您将得到如下输出:

[ { path: 'home/my/Pictures',
    hash: '...hash',
    size: 10329 },
  { path: 'home/my',
    hash: '...hash',
    size: 10384 },
  { path: 'home',
    hash: '...hash',
    size: 10435 },
  { path: '/home/my/Pictures/google.png',
    hash: 'QmYeznhKxbZY37g5ymFzWnmrbP8ph2fdxycAuw9S9goUYr',
    size: 10272 } ]

然后复制该文件哈希,确保您可以从浏览器访问该文件。

// replace the hash code for your own need
https://ipfs.io/ipfs/QmYeznhKxbZY37g5ymFzWnmrbP8ph2fdxycAuw9S9goUYr

然后在您的终端中下载文件

// replace the hash code for your own need
ipfs get QmYeznhKxbZY37g5ymFzWnmrbP8ph2fdxycAuw9S9goUYr -o=google.png

检查here以获得更多选项

如果导入了必要的包,您可以从 nodejs 执行类似的操作:

const fileHash = 'you hash of the file you want to get'

ipfs.files.get(fileHash, function (err, files) {
    files.forEach((file) => {
        console.log(file.path)
        console.log("File content >> ",file.content.toString('utf8'))
    })
})