ipfshttpclient

ipfs http client

Pure Nim score 15/100 · tests present · no docs generated

Summary

Latest Version Unknown
License Apache-2.0
CI Status Failing
Downloads 0
Last Indexed 2026-07-21 05:25

Tags

Installation

nimble install ipfshttpclient
choosenim install ipfshttpclient
git clone https://github.com/ringabout/ipfshttpclient

OS Compatibility

Platform Linux macOS Windows FreeBSD OpenBSD NetBSD Android iOS WASM Embedded
ipfshttpclient - - - - - - -

Source

Repository https://github.com/ringabout/ipfshttpclient
Homepage https://github.com/ringabout/ipfshttpclient
Registry Source nimble_official

README

ipfshttpclient

ipfs http client implemented in Nim (in progress)

import ipfshttpclient
import std/json

var ipfs = newIpfsHttpClient()
let added = ipfs.add("test.js")
if added != nil:
  echo added.pretty
  var name = added["Hash"].getStr
  let res = ipfs.cat(name)
  echo res