Categorygithub.com/beyondstorage/go-service-ipfs
repositorypackage
0.2.0
Repository: https://github.com/beyondstorage/go-service-ipfs.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

Build Status License

go-service-ipfs

InterPlanetary File System(IPFS) support for go-storage.

Install

go get github.com/beyondstorage/go-service-ipfs

Usage

import (
	"log"

	_ "github.com/beyondstorage/go-service-ipfs"
	"github.com/beyondstorage/go-storage/v4/services"
)

func main() {
	store, err := services.NewStoragerFromString("ipfs:///path/to/workdir?endpoint=<ipfs_http_api_endpoint>")
	if err != nil {
		log.Fatal(err)
	}
	
	// Write data from io.Reader into hello.txt
	n, err := store.Write("hello.txt", r, length)
}