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.
Marten Seemann 115858f161 move go-libp2p-resource-manager here 2 years ago
.github ci: add testground ping interop workflow (#1625) 2 years ago
config switch from github.com/libp2p/go-libp2p-peerstore to p2p/host/peerstore 2 years ago
examples examples: remove ipfs components from echo (#1672) 2 years ago
p2p move go-libp2p-resource-manager here 2 years ago
scripts fix: mkreleaselog exclude autogenerated files (#1567) 2 years ago
.codecov.yml turn off stupid codecov annotations 4 years ago
.gitignore Add .gitignore for each example 4 years ago
LICENSE added docs 9 years ago
README.md remove workspace and packages section from README (#1563) 2 years ago
defaults.go switch from github.com/libp2p/go-libp2p-peerstore to p2p/host/peerstore 2 years ago
error_util.go refactor for transport changes 7 years ago
go.mod switch from github.com/libp2p/go-libp2p-peerstore to p2p/host/peerstore 2 years ago
go.sum switch from github.com/libp2p/go-libp2p-peerstore to p2p/host/peerstore 2 years ago
libp2p.go Doc: QUIC is default when no transports set (#1250) 3 years ago
libp2p_test.go remove flaky TestTcpSimultaneousConnect (#1425) 3 years ago
limits.go use autoscaling limits (#1637) 2 years ago
options.go docs: point to SetDefaultServiceLimits in ResourceManager option (#1636) 2 years ago
options_filter.go Fixed bug for inbound connections gated by the deprecated filter option (#1004) 4 years ago
package-list.json Cleanup some references to old examples repo 4 years ago
version.json Release v0.21.0 (#1648) 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:

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.