Vac deep research experiments https://status-im.github.io/nim-libp2p/docs/
Go to file
cheatfate 78f6afb544
Change default logging level to Debug.
2019-08-22 13:29:54 +03:00
examples Fix #25. 2019-08-14 08:31:06 +03:00
libp2p Change default logging level to Debug. 2019-08-22 13:29:54 +03:00
tests Fix #17. 2019-08-22 00:42:44 +03:00
.appveyor.yml Attempt #3 to fix Appveyor CI freeze. 2019-08-22 09:09:44 +03:00
.gitignore Initialize travis and licenses. 2018-11-19 04:04:47 +02:00
.gitmodules Add BearSSL submodule 2019-02-20 00:24:43 +02:00
.travis.yml Travis: use Go 1.12 2019-08-15 01:55:25 +02:00
LICENSE Initial commit 2018-11-19 03:58:31 +02:00
LICENSE-APACHEv2 Initialize travis and licenses. 2018-11-19 04:04:47 +02:00
LICENSE-MIT Initialize travis and licenses. 2018-11-19 04:04:47 +02:00
README.md Update README.md 2019-08-14 15:41:16 +02:00
libp2p.nim Fix varint import 2019-08-16 12:36:54 +02:00
libp2p.nimble Attempt to fix Appveyor CI freeze. 2019-08-22 08:49:27 +03:00

README.md

nim-libp2p

Build Status Build status

Introduction

An implementation of libp2p in Nim, as a wrapper of the Libp2p Go daemon.

Note that you need Go 1.12+ for the below instructions to work!

Install dependencies and run tests with:

git clone https://github.com/status-im/nim-libp2p && cd nim-libp2p
nimble install
nimble test
git submodule update --init --recursive
go version
git clone https://github.com/libp2p/go-libp2p-daemon
cd go-libp2p-daemon
git checkout v0.0.1
go install ./...
cd ..

Try out the chat example:

nim c -r --threads:on examples\chat.nim

This will output a peer ID such as QmbmHfVvouKammmQDJck4hz33WvVktNEe7pasxz2HgseRu which you can use in another instance to connect to it.

./example/chat
/connect QmbmHfVvouKammmQDJck4hz33WvVktNEe7pasxz2HgseRu

You can now chat between the instances!

Chat example

API

Coming soon...

License

Licensed and distributed under either of

or

at your option. This file may not be copied, modified, or distributed except according to those terms.