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 1943c649cd
identify: remove old code targeting Go 1.17 (#1964)
2 years ago
.github core/crypto: drop all OpenSSL code paths (#1953) 2 years ago
config quic / webtransport: make it possible to listen on the same address / port (#1905) 2 years ago
core core/crypto: drop all OpenSSL code paths (#1953) 2 years ago
examples chore: update examples to v0.24.0 (#1936) 2 years ago
p2p identify: remove old code targeting Go 1.17 (#1964) 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 README: remove broken links from table of contents (#1893) 2 years ago
ROADMAP.md roadmap: reorder priority, reorganize sections (#1831) 2 years ago
defaults.go add WebTransport to the list of default transports (#1915) 2 years ago
go.mod core/crypto: drop all OpenSSL code paths (#1953) 2 years ago
go.sum core/crypto: drop all OpenSSL code paths (#1953) 2 years ago
libp2p.go switch from github.com/libp2p/go-libp2p-core to core 2 years ago
libp2p_test.go quic / webtransport: make it possible to listen on the same address / port (#1905) 2 years ago
limits.go switch from github.com/libp2p/go-libp2p-core to core 2 years ago
options.go quic / webtransport: make it possible to listen on the same address / port (#1905) 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
version.json release v0.24.2 (#1969) 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.