项目作者: decanus

项目描述 :
Pastry DHT implementation with a standalone libp2p compatible node
高级语言: Go
项目地址: git://github.com/decanus/bureka.git
创建时间: 2020-05-04T15:54:55Z
项目社区:https://github.com/decanus/bureka

开源协议:MIT License

下载


Bureka

:warning: WORK IN PROGRESS! :warning:

An implementation of the Pastry DHT in go. This package includes a libp2p compatible node making it easy to use in a libp2p network.

Usage with libp2p:

  1. func main() {
  2. writer := node.NewWriter()
  3. d := dht.New(id, writer)
  4. n := node.New(ctx.Background(), d, host.Host, writer)
  5. }