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: 5 months 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 (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-14T08:46:19.000Z (about 2 years ago)
- Last Synced: 2025-02-09T18:52:12.239Z (over 1 year 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