Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/selfup/horde

Turn cluster nodes into a Horde and let them communicate flawlessly in distributed fashion!
https://github.com/selfup/horde

distributed go swarm-cluster

Last synced: about 1 month ago
JSON representation

Turn cluster nodes into a Horde and let them communicate flawlessly in distributed fashion!

Awesome Lists containing this project

README

        

# Horde

Masterless node tracker.

### What is this for?

To have nodes talk to eachother and be aware of eachother in realtime :rocket:

Think EPMD in erlang as a library for your go web apps :tada:

### TODO

All of it :pray:

### Example (very early API)

```go
package main

import (
"fmt"
"net/http"

"github.com/selfup/horde"
)

func main() {
hordeManager := horde.Boot()

res := hordeManager.Ping()

fmt.Println(res)

http.ListenAndServe(":8080", nil)
}

```