libp2p implementation in Go
Go to file
Marten Seemann c8336a47b8
add a roadmap for the next 6 months (#1784)
2022-10-07 15:19:57 -07:00
.github sync: update CI config files (#1771) 2022-09-21 13:32:51 +00:00
config tls: use ALPN to negotiate the stream multiplexer (#1772) 2022-10-07 10:34:58 -07:00
core tls: use ALPN to negotiate the stream multiplexer (#1772) 2022-10-07 10:34:58 -07:00
examples examples: update go-libp2p to v0.23.x (#1803) 2022-10-06 13:04:44 -07:00
p2p tls: use ALPN to negotiate the stream multiplexer (#1772) 2022-10-07 10:34:58 -07: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 add a roadmap for the next 6 months (#1784) 2022-10-07 15:19:57 -07:00
ROADMAP.md add a roadmap for the next 6 months (#1784) 2022-10-07 15:19:57 -07:00
defaults.go add default listen addresses for QUIC (#1615) 2022-08-22 08:06:10 -07:00
error_util.go refactor for transport changes 2018-06-04 21:22:24 -07:00
go.mod chore: update webtransport-go to v0.1.1 (#1776) 2022-09-23 09:34:26 -07:00
go.sum chore: update webtransport-go to v0.1.1 (#1776) 2022-09-23 09:34:26 -07:00
libp2p.go switch from github.com/libp2p/go-libp2p-core to core 2022-08-17 17:13:02 +03:00
libp2p_test.go add default listen addresses for QUIC (#1615) 2022-08-22 08:06:10 -07:00
limits.go switch from github.com/libp2p/go-libp2p-core to core 2022-08-17 17:13:02 +03:00
options.go identify: make the protocol version configurable (#1724) 2022-09-02 01:11:41 -07: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.23.2 (#1781) 2022-09-23 10:03:00 -07: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.