An open API service indexing awesome lists of open source software.

https://github.com/ringabout/ipfshttpclient

ipfshttpclient implemented in Nim (in progress)
https://github.com/ringabout/ipfshttpclient

Last synced: about 1 year ago
JSON representation

ipfshttpclient implemented in Nim (in progress)

Awesome Lists containing this project

README

          

# ipfshttpclient

ipfs http client implemented in Nim (in progress)

```nim
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
```