An open API service indexing awesome lists of open source software.

https://github.com/decanus/bureka

Pastry DHT implementation with a standalone libp2p compatible node
https://github.com/decanus/bureka

dht distributed-hash-table libp2p pastry pastry-dht

Last synced: 2 months ago
JSON representation

Pastry DHT implementation with a standalone libp2p compatible node

Awesome Lists containing this project

README

        

# Bureka

**:warning: WORK IN PROGRESS! :warning:**

An implementation of the [Pastry DHT](http://rowstron.azurewebsites.net/PAST/pastry.pdf) in go. This package includes a libp2p compatible node making it easy to use in a libp2p network.

Usage with libp2p:

```go
func main() {
writer := node.NewWriter()
d := dht.New(id, writer)

n := node.New(ctx.Background(), d, host.Host, writer)
}
```