title: "初探ipfs" date: "2023-08-28" tag: ["ipfs"]

下載

brew install ipfs ipfs init

import { create } from 'ipfs-http-client'
const ipfs = create(new URL('http://127.0.0.1:5001'))
const { cid } = await ipfs.add('Hello world!')
//CID(QmQzCQn4puG4qu8PVysxZmscmQ5vT1ZXpqo7f58Uh9QfyY)

更新

https://github.com/ipfs-examples/helia-examples/tree/main/examples/helia-101

Ref

  • https://docs.ipfs.tech/install/command-line/#install-official-binary-distributions
  • https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs-http-client/README.md