GoodHut / Goodhut

Goodhut
Creative Commons Zero v1.0 Universal
1 stars 1 forks source link

Nate #83

Open GoodHut opened 1 year ago

GoodHut commented 1 year ago

<h1 align="center">   <a href="libp2p.io"><img width="250" src="https://github.com/libp2p/libp2p/blob/master/logo/black-bg-2.png?raw=true" alt="libp2p hex logo" />

<h3 align="center">The Go implementation of the libp2p Networking Stack.

<p align="center">   <a href="http://protocol.ai"><img src="https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square" />   <a href="http://libp2p.io/"><img src="https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square" />   <a href="http://webchat.freenode.net/?channels=%23libp2p"><img src="https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square" />   <a href="https://waffle.io/libp2p/libp2p"><img src="https://img.shields.io/badge/pm-waffle-yellow.svg?style=flat-square" />

<p align="center">   <a href="https://travis-ci.com/libp2p/go-libp2p"><img src="https://travis-ci.com/libp2p/go-libp2p.svg?branch=master" />   
  <a href="https://github.com/RichardLitt/standard-readme"><img src="https://img.shields.io/badge/standard--readme-OK-green.svg?style=flat-square" />   <a href="https://godoc.org/github.com/libp2p/go-libp2p"><img src="https://godoc.org/github.com/libp2p/go-libp2p?status.svg" />   <a href=""><img src="https://img.shields.io/badge/golang-%3E%3D1.8.0-orange.svg?style=flat-square" />   

 Project status

Throughput Graph

Weekly Core Dev Calls

 Table of Contents

BackgroundBundlesUsage   - Install   - API   - ExamplesDevelopment   - Tests   - PackagesContributeLicense

 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.

 We will be writing a set of docs, posts, tutorials, and talks to explain what p2p is, why it is tremendously useful, and how it can help your existing and new projects. But in the meantime, check out

 - The libp2p Specification  - go-libp2p implementation  - js-libp2p implementation  - rust-libp2p implementation

 Usage

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

We mainly use Go modules for our dependency and release management (and thus require go >= 1.11). In order to get the best developer experience, we recommend you do too. Otherwise, you may ocassionally encounter a breaking build as you'll be running off master (which, by definition, is not guaranteed to be stable).

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" 

The next time you run go get or go build, the Go build tools will look for available releases, and will pick the highest available one.

As new releases of go-libp2p are made available, you can upgrade your application by manually editing your go.mod file, or using the Go tools to maintain module requirements.

 API

GoDoc

 Examples

Examples can be found in the examples repo.

 Development

 Dependencies

While developing, you need to use gx to install and link your dependencies, to do that, run:

 > make deps 

Before commiting and pushing to Github, make sure to rewind the gx'ify of dependencies. You can do that with:

 > make publish 

 Tests

Running of individual tests is done through gx test <path to test>

 $ cd $GOPATH/src/github.com/libp2p/go-libp2p 
 $ make deps 
 $ gx test ./p2p/<path of module you want to run tests for> 

 Packages

 This table is generated using the module package-table with package-table --data=package-list.json.

List of packages currently in existence for libp2p:

| Name | CI | Coverage | Description | | ---------|---------|---------|--------- | | Libp2p | | go-libp2p | Travis CI | codecov | go-libp2p entry point | | go-libp2p-host | Travis CI | codecov | libp2p "host" interface | | go-libp2p-blankhost | Travis CI | codecov | minimal implementation of the "host" interface | | Network | | go-libp2p-net | Travis CI | codecov | libp2p connection and "network" interfaces | | go-libp2p-swarm | Travis CI | codecov | reference implementation | | Transport | | go-libp2p-transport | Travis CI | codecov | interfaces | | go-ws-transport | Travis CI | codecov | WebSocket transport | | go-tcp-transport | Travis CI | codecov | TCP transport | | go-libp2p-quic-transport | Travis CI | codecov | QUIC transport | | go-udp-transport | Travis CI | codecov | UDP transport | | go-utp-transport | Travis CI | codecov | uTorrent transport (UTP) | | go-libp2p-circuit | Travis CI | codecov | relay transport | | go-libp2p-transport-upgrader | Travis CI | codecov | upgrades multiaddr-net connections into full libp2p transports | | go-libp2p-reuseport-transport | Travis CI | codecov | partial transport for building transports that reuse ports | | Encrypted Channels | | go-conn-security | Travis CI | codecov | interfaces | | go-libp2p-secio | Travis CI | codecov | SecIO crypto channel | | go-conn-security-multistream | Travis CI | codecov | multistream multiplexed meta crypto channel | | Private Network | | go-libp2p-interface-pnet | Travis CI | codecov | interfaces | | go-libp2p-pnet | Travis CI | codecov | reference implementation | | Stream Muxers | | go-stream-muxer | Travis CI | codecov | interfaces | | go-smux-yamux | Travis CI | codecov | YAMUX stream multiplexer | | go-smux-mplex | Travis CI | codecov | MPLEX stream multiplexer | | NAT Traversal | | go-libp2p-nat | Travis CI | codecov |  | | Peerstore | | go-libp2p-peerstore | Travis CI | codecov | interfaces and reference implementation | | Connection Manager | | go-libp2p-interface-connmgr | Travis CI | codecov | interface | | go-libp2p-connmgr | Travis CI | codecov | reference implementation | | Routing | | go-libp2p-routing | Travis CI | codecov | routing interfaces | | go-libp2p-record | Travis CI | codecov | record type and validator logic | | go-libp2p-routing-helpers | Travis CI | codecov | helpers for composing routers | | go-libp2p-kad-dht | Travis CI | codecov | Kademlia-like router | | go-libp2p-pubsub-router | Travis CI | codecov | record-store over pubsub adapter | | Consensus | | go-libp2p-consensus | Travis CI | codecov | consensus protocols interfaces | | go-libp2p-raft | Travis CI | codecov | consensus implementation over raft | | Pubsub | | go-libp2p-pubsub | Travis CI | codecov | multiple pubsub over libp2p implementations | | RPC | | go-libp2p-gorpc | Travis CI | codecov | a simple RPC library for libp2p | | Metrics | | go-libp2p-metrics | Travis CI | codecov | libp2p metrics interfaces/collectors | | Data Types | | go-libp2p-peer | Travis CI | codecov | libp2p peer-ID datatype | | go-libp2p-crypto | Travis CI | codecov | libp2p key types | | go-libp2p-protocol | Travis CI | codecov | libp2p protocol datatype | | go-libp2p-kbucket | Travis CI | codecov | Kademlia routing table helper types | | Utilities/miscellaneous | | go-libp2p-loggables | Travis CI | codecov | logging helpers | | go-maddr-filter | Travis CI | codecov | multiaddr filtering helpers | | go-libp2p-netutil | Travis CI | codecov | misc utilities | | go-msgio | Travis CI | codecov | length prefixed data channel | | go-addr-util | Travis CI | codecov | address utilities for libp2p swarm | | go-buffer-pool | Travis CI | codecov | a variable size buffer pool for go | | go-libp2p-routing-helpers | Travis CI | codecov | routing helpers | | go-reuseport | Travis CI | codecov | enables reuse of addresses | | go-sockaddr | Travis CI | codecov | utils for sockaddr conversions | | go-flow-metrics | Travis CI | codecov | metrics library | | Testing and examples | | go-testutil | Travis CI | codecov | a collection of testing utilities for ipfs and libp2p | | go-libp2p-examples | Travis CI | codecov | go-libp2p examples and tutorials | | go-libp2p-circuit-progs | Travis CI | codecov | testing programs for go-libp2p-circuit |

 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 - please make branches + pull-request, even if working on the main repository - ask questions or talk about things in Issues or #ipfs on freenode. - ensure you are able to contribute (no legal issues please-- we use the DCO) - run go fmt before pushing any code - run golint and go vet too -- some things (like protobuf files) are expected to fail. - get in touch with @jbenet and @diasdavid 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.