From 9bd5bd4d05f355ab44839f7df518aa6e107be42b Mon Sep 17 00:00:00 2001 From: Gus Eggert Date: Wed, 25 Jan 2023 08:17:03 -0500 Subject: [PATCH] Update readme --- README.md | 65 ++++++++++++++++++++++++++++++++++++++++++++++++------- logo.svg | 1 + 2 files changed, 58 insertions(+), 8 deletions(-) create mode 100644 logo.svg diff --git a/README.md b/README.md index 06a4f1544..2720610af 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,66 @@ -go-libipfs -======================= +

+go-libipfs 🍌 +
+go-libipfs logo +
+

+

A library for building IPFS applications and implementations.

-> A library for building IPFS implementations +
-Go-libips is a library for building IPFS implementations and tools in Go. It contains reusable functionality useful for interacting and experimenting with IPFS. +[![Go Test](https://github.com/ipfs/go-libipfs/actions/workflows/go-test.yml/badge.svg)](https://github.com/ipfs/go-libipfs/actions/workflows/go-test.yml) +[![Go Docs](https://img.shields.io/badge/godoc-reference-blue.svg)](https://pkg.go.dev/github.com/ipfs/go-libipfs) +[![codecov](https://codecov.io/gh/ipfs/go-libipfs/branch/main/graph/badge.svg?token=9eG7d8fbCB)](https://codecov.io/gh/ipfs/go-libipfs) -This is also used by [Kubo](https://github.com/ipfs/kubo) for its core functionality. +## -Currently this library is a target for consolidating Go IPFS repositories, and will receive minor version releases as repositories are consolidated into it. We are initially focused on merely consolidating repositories, *not* refactoring across packages. Once repositories are mostly consolidated, *then* we will begin refactoring this library holistically. Individual components can still be worked on and refactored individually, but please refrain from trying to refactor across components. +Go-libips is a component library for building IPFS applications and implementations in Go. -## Contributing +Some scenarios in which you may find go-libipfs helpful: + +* You are building an application that interacts with the IPFS network +* You are building an IPFS implementation +* You want to reuse some components of IPFS such as its Kademlia DHT, Bitswap, data encoding, etc. +* You want to experiment with IPFS + +Go-libipfs powers [Kubo](https://github.com/ipfs/kubo), which is the most popular IPFS implementation, so its code has been battle-tested on the IPFS network for years, and is well-understood by the community. + +## What kind of components does go-libipfs have? + +Go-libipfs includes high-quality components useful for interacting with IPFS protocols, public and private IPFS networks, and content-addressed data, such as: + +- Content routing (DHT, delegated content routing, providing) +- Data transfer (gateways, Bitswap, incremental verification) +- Naming and mutability (name resolution, IPNS) +- Interacting with public and private IPFS networks +- Working with content-addressed data + +Go-libipfs aims to provide a cohesive interface into these components. Note that not all of the underlying components necessarily reside in this respository. + +## Getting started +TODO + +## Should I add my IPFS component to go-libipfs? +We happily accept external contributions! However, go-libipfs maintains a high quality bar, so code accepted into go-libipfs must meet some minimum maintenance criteria: + +* Actively maintained + * Must be actively used by, or will be included in software that is actively used by, a significant number of users or production systems. Code that is not actively used cannot be properly maintained. + * Must have multiple engineers who are willing and able to maintain the relevant code in go-libipfs for a long period of time. + * If either of these changes, go-libipfs maintainers will consider removing the component from go-libipfs. +* Adequately tested + * At least with unit tests + * Ideally also including integration tests with other components +* Adequately documented + * Godocs at minimum + * Complex components should have their own doc.go or README.md describing the component, its use cases, tradeoffs, design rationale, etc. +* If the maintainers are not go-libipfs maintainers, then the component must include a CODEOWNERS file with at least two code owners who can commit to reviewing PRs + +If you have some experimental component that you think would benefit the IPFS community, we suggest you build the component in your own repository until it's clear that there's community demand for it, and then open an issue in this repository to discuss including it in go-libipfs. + +## Help + +If you have questions, feel free to open an issue. You can also find the go-libipfs maintainers in [Slack](https://filecoin.io/slack/) at #go-libipfs-maintainers. -Contributions are welcome! This repository is part of the IPFS project and therefore governed by our [contributing guidelines](https://github.com/ipfs/community/blob/master/CONTRIBUTING.md). ## License diff --git a/logo.svg b/logo.svg new file mode 100644 index 000000000..735f3ab80 --- /dev/null +++ b/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file