github.com/libp2p/go-libp2p-pubsub
go
pkg:golang/github.com/libp2p/go-libp2p-pubsub
133 Dependabot PRs
about 2 months ago
37 repositories
6 repositories
Recent PRs (filtered by: Patch PRs )
build(deps): bump the go-dependencies group with 27 updates
build(deps): Bump the all-go group across 7 directories with 7 updates
evstack/ev-node #2666
chore(deps): bump github.com/libp2p/go-libp2p-pubsub from 0.14.2 to 0.14.3
chore(deps): bump the patch-updates group with 7 updates
celestiaorg/celestia-node #4555
Bump github.com/libp2p/go-libp2p-pubsub from 0.14.2 to 0.14.3
ipfs/go-ds-crdt #309
Chore(deps): Bump github.com/libp2p/go-libp2p-pubsub from 0.14.2 to 0.14.3
symbioticfi/relay #168
chore(deps): bump the patch-updates group across 1 directory with 7 updates
chore(deps): bump the patch-updates group across 1 directory with 11 updates
Bump github.com/libp2p/go-libp2p-pubsub from 0.14.2 to 0.14.3
chore(deps): bump github.com/libp2p/go-libp2p-pubsub from 0.14.2 to 0.14.3
IceFireDB/IceFireDB #934
build(deps): bump github.com/libp2p/go-libp2p-pubsub from 0.14.2 to 0.14.3 in the patch-updates group
evstack/ev-abci #249
chore(deps): bump the patch-updates group across 1 directory with 13 updates
build(deps): bump the go-dependencies group across 1 directory with 24 updates
ethpandaops/xatu #648
chore(deps): bump the patch-updates group across 1 directory with 12 updates
celestiaorg/celestia-node #4528
chore(deps): bump the patch-updates group across 1 directory with 12 updates
chore(deps): bump the patch-updates group across 1 directory with 12 updates
celestiaorg/celestia-node #4518
build(deps): bump the go-dependencies group across 1 directory with 21 updates
ethpandaops/xatu #645
build(deps): bump the go-dependencies group across 1 directory with 20 updates
ethpandaops/xatu #644
build(deps): bump the go-dependencies group across 1 directory with 12 updates
ethpandaops/xatu #640
build(deps): Bump the all-go group across 8 directories with 23 updates
evstack/ev-node #2573
build(deps): Bump the all-go group across 8 directories with 20 updates
evstack/ev-node #2548
build(deps): Bump the all-go group across 8 directories with 20 updates
evstack/ev-node #2546
build(deps): Bump the patch-updates group with 2 updates
evstack/ev-node #2522
bot: Bump github.com/libp2p/go-libp2p-pubsub from 0.14.0 to 0.14.2
sourcenetwork/defradb #3833
deps(deps): bump github.com/libp2p/go-libp2p-pubsub from 0.14.1 to 0.14.2 in the patch-updates group
rollkit/go-execution-abci #188
deps(deps): bump github.com/libp2p/go-libp2p-pubsub from 0.14.1 to 0.14.2 in the patch-updates group
rollkit/go-execution-abci #182
build(deps): Bump github.com/libp2p/go-libp2p-pubsub from 0.14.1 to 0.14.2 in the patch-updates group
rollkit/rollkit #2447
Bump github.com/libp2p/go-libp2p-pubsub from 0.14.1 to 0.14.2
Bump github.com/libp2p/go-libp2p-pubsub from 0.14.1 to 0.14.2
chore(deps): bump github.com/libp2p/go-libp2p-pubsub from 0.14.1 to 0.14.2
IceFireDB/IceFireDB #904
Bump github.com/libp2p/go-libp2p-pubsub from 0.14.0 to 0.14.1
Ethernal-Tech/blade #173
chore(deps): bump github.com/libp2p/go-libp2p-pubsub from 0.14.0 to 0.14.1 in the patch-updates group
rollkit/go-execution-abci #167
build(deps): Bump github.com/libp2p/go-libp2p-pubsub from 0.14.0 to 0.14.1 in the patch-updates group
rollkit/rollkit #2403
Bump github.com/libp2p/go-libp2p-pubsub from 0.14.0 to 0.14.1
chore(deps): bump github.com/libp2p/go-libp2p-pubsub from 0.14.0 to 0.14.1
IceFireDB/IceFireDB #902
build(deps): bump the go-dependencies group across 1 directory with 12 updates
ethpandaops/xatu #514
chore(deps): Bump the patch-updates group across 1 directory with 15 updates
chore(deps): Bump the patch-updates group across 1 directory with 15 updates
celestiaorg/celestia-node #4255
Bump github.com/libp2p/go-libp2p-pubsub from 0.13.0 to 0.13.1
build(deps): bump github.com/libp2p/go-libp2p-pubsub from 0.13.0 to 0.13.1
ipfs-cluster/ipfs-cluster #2186
deps: bump github.com/libp2p/go-libp2p-pubsub from 0.13.0 to 0.13.1 in /go-peer
libp2p/universal-connectivity #248
Package Details
| Name: | github.com/libp2p/go-libp2p-pubsub |
| Ecosystem: | go |
| PURL Type: | golang |
| Package URL: | pkg:golang/github.com/libp2p/go-libp2p-pubsub |
| JSON API: | View JSON |
Package Information
The pubsub package provides facilities for the Publish/Subscribe pattern of message propagation, also known as overlay multicast. The implementation provides topic-based pubsub, with pluggable routing algorithms. The main interface to the library is the PubSub object. You can construct this object with the following constructors: - NewFloodSub creates an instance that uses the floodsub routing algorithm. - NewGossipSub creates an instance that uses the gossipsub routing algorithm. - NewRandomSub creates an instance that uses the randomsub routing algorithm. In addition, there is a generic constructor that creates a pubsub instance with a custom PubSubRouter interface. This procedure is currently reserved for internal use within the package. Once you have constructed a PubSub instance, you need to establish some connections to your peers; the implementation relies on ambient peer discovery, leaving bootstrap and active peer discovery up to the client. To publish a message to some topic, use Publish; you don't need to be subscribed to the topic in order to publish. To subscribe to a topic, use Subscribe; this will give you a subscription interface from which new messages can be pumped.
| Repository: | https://github.com/libp2p/go-libp2p-pubsub |
| Homepage: | https://github.com/libp2p/go-libp2p-pubsub |
| Latest Release: |
v0.14.0
about 1 year ago |
| Dependent Repos: | 1,640 |
| Dependent Packages: | 1,172 |
| Ranking: | Top 0.1995% by dependent repos Top 0.1174% by dependent pkgs |