https://github.com/golemfactory/bootstrap_go
  
  
    Bootstrap nodes for golem network (go implementation) 
    https://github.com/golemfactory/bootstrap_go
  
golang golem network p2p
        Last synced: 7 months ago 
        JSON representation
    
Bootstrap nodes for golem network (go implementation)
- Host: GitHub
- URL: https://github.com/golemfactory/bootstrap_go
- Owner: golemfactory
- License: gpl-3.0
- Created: 2018-01-12T12:29:20.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-14T14:37:56.000Z (almost 6 years ago)
- Last Synced: 2025-03-20T08:07:28.739Z (7 months ago)
- Topics: golang, golem, network, p2p
- Language: Go
- Homepage: https://golem.network
- Size: 77.1 KB
- Stars: 1
- Watchers: 6
- Forks: 4
- Open Issues: 1
- 
            Metadata Files:
            - Readme: README.md
- License: COPYING.txt
 
Awesome Lists containing this project
README
          # bootstrap_go
Lightweight bootstrap nodes for Golem network. Basic implementation in Go.
[](https://circleci.com/gh/golemfactory/bootstrap_go)
# installation
## prerequisites
- install `go` tools https://golang.org/doc/install  
- create go workspace `mkdir ~/go` https://github.com/golang/go/wiki/SettingGOPATH
## get code and deps
This will get the sources into `GOPATH` which is by default `~/go`.
```
go get github.com/golemfactory/bootstrap_go
cd ~/go/src/github.com/golemfactory/bootstrap_go/
# get dependencies and test dependencies
go get -t ./...
```
## run
```
go run main/main.go
```
## tests
```
go test ./...
```
## benchmarks
```
go test -bench=. -benchtime=20s ./...
```