Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stolab/ipfs-api
IPFS-api is a small api client for IPFS as defined in the kubo documentation https://docs.ipfs.tech/reference/kubo/rpc/. The client is very simple and just implement very basic operation like (upload, cat,...)
https://github.com/stolab/ipfs-api
decentralization ipfs web3
Last synced: 4 days ago
JSON representation
IPFS-api is a small api client for IPFS as defined in the kubo documentation https://docs.ipfs.tech/reference/kubo/rpc/. The client is very simple and just implement very basic operation like (upload, cat,...)
- Host: GitHub
- URL: https://github.com/stolab/ipfs-api
- Owner: stolab
- License: gpl-3.0
- Created: 2024-06-12T10:18:59.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-14T08:46:19.000Z (6 months ago)
- Last Synced: 2024-12-17T11:43:23.010Z (9 days ago)
- Topics: decentralization, ipfs, web3
- Language: Go
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IPFS-API
This project provide a go wrapper to use the [IPFS api](https://docs.ipfs.tech/reference/kubo/rpc/#getting-started).
The given [API](https://pkg.go.dev/github.com/ipfs/kubo/client/rpc) developped by the IPFS team looks very difficult to use if not completely broken.
This API will remain as simple as possible, only used to interact with content on IPFS (upload, retrieve,...)
## Example
WIP