ipfshttpclient
ipfs http client
Summary
| Latest Version | 0.1.0 |
|---|---|
| License | Apache-2.0 |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-09-02 07:20 |
Tags
Authors
- flywind
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 | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Dependencies
| Package | Version | Optional |
|---|---|---|
| nim >= | 1.6.0 | No |
| libcurl#head | - | No |
| zippy >= | 0.7.3 | No |
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