libp2p implementation in Go
Go to file
Marten Seemann 8baf05b71d peerstore: remove gogo-specific Protobuf magic 2023-01-09 09:46:30 +13:00
.github core/crypto: drop all OpenSSL code paths (#1953) 2023-01-06 17:18:13 -08:00
config quic / webtransport: make it possible to listen on the same address / port (#1905) 2022-11-28 15:55:38 -08:00
core core: remove introspection package (#1978) 2023-01-06 17:24:28 -08:00
examples chore: update examples to v0.24.0 (#1936) 2022-12-10 14:26:23 -08:00
p2p peerstore: remove gogo-specific Protobuf magic 2023-01-09 09:46:30 +13:00
scripts fix: mkreleaselog exclude autogenerated files (#1567) 2022-05-26 08:32:15 -07:00
.codecov.yml turn off stupid codecov annotations 2020-09-14 19:35:21 +03:00
.gitignore Add .gitignore for each example 2021-05-10 11:54:35 +01:00
LICENSE added docs 2015-09-30 19:08:00 -04:00
README.md README: remove broken links from table of contents (#1893) 2022-11-16 18:55:10 -08:00
ROADMAP.md roadmap: remove optimizations of the TCP-based handshake (#1959) 2023-01-06 18:35:53 -08:00
defaults.go add WebTransport to the list of default transports (#1915) 2023-01-06 17:22:31 -08:00
go.mod core/crypto: drop all OpenSSL code paths (#1953) 2023-01-06 17:18:13 -08:00
go.sum core/crypto: drop all OpenSSL code paths (#1953) 2023-01-06 17:18:13 -08:00
libp2p.go switch from github.com/libp2p/go-libp2p-core to core 2022-08-17 17:13:02 +03:00
libp2p_test.go quic / webtransport: make it possible to listen on the same address / port (#1905) 2022-11-28 15:55:38 -08:00
limits.go identify: remove support for Identify Delta 2023-01-07 14:41:27 +13:00
options.go quic / webtransport: make it possible to listen on the same address / port (#1905) 2022-11-28 15:55:38 -08:00
options_filter.go switch from github.com/libp2p/go-libp2p-core to core 2022-08-17 17:13:02 +03:00
package-list.json Cleanup some references to old examples repo 2021-05-10 11:46:43 +01:00
version.json release v0.24.2 (#1969) 2022-12-30 20:36:29 -08:00

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.