You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prithvi Shahi d42a06d1e6
chore: unify dashboard location (#2110)
2 years ago
.github chore: update release.md (#2090) 2 years ago
config autonat: add metrics (#2086) 2 years ago
core use atomic.Int32 and atomic.Int64 (#2096) 2 years ago
dashboards chore: unify dashboard location (#2110) 2 years ago
examples sync: update CI config files (#2073) 2 years ago
p2p chore: unify dashboard location (#2110) 2 years ago
scripts fix: mkreleaselog exclude autogenerated files (#1567) 2 years ago
test-plans chore: update go-multistream (#2081) 2 years ago
.codecov.yml turn off stupid codecov annotations 4 years ago
.gitignore chore: git-ignore various flavors of qlog files (#2064) 2 years ago
CHANGELOG.md chore: modify changelog entries (#2101) 2 years ago
LICENSE added docs 9 years ago
README.md Add ci flakiness score to readme (#2002) 2 years ago
ROADMAP.md chore: remove textual roadmap in favor for Starmap (#2036) 2 years ago
defaults.go Expose muxer ids (#2012) 2 years ago
go.mod sync: update CI config files (#2073) 2 years ago
go.sum chore: update go-multistream (#2081) 2 years ago
libp2p.go Expose muxer ids (#2012) 2 years ago
libp2p_test.go quic / webtransport: make it possible to listen on the same address / port (#1905) 2 years ago
limits.go identify: remove support for Identify Delta 2 years ago
options.go autorelay: Split libp2p.EnableAutoRelay into 2 functions (#2022) 2 years ago
options_filter.go switch from github.com/libp2p/go-libp2p-core to core 2 years ago
package-list.json Cleanup some references to old examples repo 4 years ago
tools.go sync: update CI config files (#2073) 2 years ago
version.json v0.25.1 (#2082) 2 years ago

README.md

libp2p hex logo

The Go implementation of the libp2p Networking Stack.

Go Reference

Table of Contents

Background

libp2p is a networking stack and library modularized out of The IPFS Project, and bundled separately for other tools to use.

libp2p is the product of a long, and arduous quest of understanding -- a deep dive into the internet's network stack, and plentiful peer-to-peer protocols from the past. Building large-scale peer-to-peer systems has been complex and difficult in the last 15 years, and libp2p is a way to fix that. It is a "network stack" -- a protocol suite -- that cleanly separates concerns, and enables sophisticated applications to only use the protocols they absolutely need, without giving up interoperability and upgradeability. libp2p grew out of IPFS, but it is built so that lots of people can use it, for lots of different projects.

To learn more, check out the following resources:

Roadmap

Our roadmap for go-libp2p can be found here: https://github.com/libp2p/go-libp2p/blob/master/ROADMAP.md This document represents current projects the go-libp2p team is focused on and provides an estimation of completion targets. It is a completementary roadmap to the overarching libp2p project roadmap: https://github.com/libp2p/specs/blob/master/ROADMAP.md

Usage

This repository (go-libp2p) serves as the entrypoint to the universe of packages that compose the Go implementation of the libp2p stack.

You can start using go-libp2p in your Go application simply by adding imports from our repos, e.g.:

import "github.com/libp2p/go-libp2p"

Examples

Examples can be found in the examples folder.

Development

Tests

go test ./... will run all tests in the repo.

Contribute

go-libp2p is part of The IPFS Project, and is MIT-licensed open source software. We welcome contributions big and small! Take a look at the community contributing notes. Please make sure to check the issues. Search the closed ones before reporting things, and help us with the open ones.

Guidelines:

  • read the libp2p spec
  • ask questions or talk about things in our discussion forums, or open an issue for bug reports, or #libp2p on freenode.
  • ensure you are able to contribute (no legal issues please -- we use the DCO)
  • get in touch with @marten-seemann about how best to contribute
  • have fun!

There's a few things you can do right now to help out:

  • Go through the modules below and check out existing issues. This would be especially useful for modules in active development. Some knowledge of IPFS/libp2p may be required, as well as the infrasture behind it - for instance, you may need to read up on p2p and more complex operations like muxing to be able to help technically.
  • Perform code reviews.
  • Add tests. There can never be enough tests.

Supported Go Versions

We test against and support the two most recent major releases of Go. This is informed by Go's own security policy.

Notable Users

Some notable users of go-libp2p are:

  • Kubo - The original Go implementation of IPFS
  • Lotus - An implementation of the Filecoin protocol
  • Drand - A distributed random beacon daemon
  • Prysm - An Ethereum Beacon Chain consensus client built by Prysmatic Labs
  • Berty - An open, secure, offline-first, peer-to-peer and zero trust messaging app.
  • Wasp - A node that runs IOTA Smart Contracts built by the IOTA Foundation
  • Mina - A lightweight, constant-sized blockchain that runs zero-knowledge smart contracts
  • Polygon Edge - A modular, extensible framework for building Ethereum compatible networks
  • Celestia Node - The Go implementation of Celestia's data availability nodes
  • Status go - Status bindings for go-ethereum, built by Status.im
  • Flow - A blockchain built to support games, apps, and digital assets built by Dapper Labs
  • Swarm Bee - A client for connecting to the Swarm network
  • Elrond Go - The Go implementation of the the Elrond network protocol
  • Sonr - A platform to integrate DID Documents, WebAuthn, and IPFS and manage digital identity and assets.
  • EdgeVPN - A decentralized, immutable, portable VPN and reverse proxy over p2p.
  • Kairos - A Kubernetes-focused, Cloud Native Linux meta-distribution.
  • Oasis Core - The consensus and runtime layers of the Oasis protocol.

Please open a pull request if you want your project to be added here.