From b136958849cf84287f18574998b223b4c78291f3 Mon Sep 17 00:00:00 2001 From: Mike Goelzer Date: Wed, 12 Sep 2018 14:26:38 -0700 Subject: [PATCH] Updated README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 508f326..3c0aa77 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,6 @@ cd pubsub This peer, which is not in bootstrapper mode, creates a node, subscribes to the shared topic string, spawns the same go routine, and then loops forever requesting user input and publishing each line to the topic. -#TODO **Third terminal**: Create a JS peer to connect to bootstrap and publish on topic ``` cd pubsub/js @@ -60,4 +59,10 @@ npm install # first time only node index.js /ip4/127.0.0.1/tcp/9876/ipfs/QmehVYruznbyDZuHBV4vEHESpDevMoAovET6aJ9oRuEzWa ``` +This JS peer will fire off a hello message every few seconds, which the other two subscribing nodes can see. + +If you return to the second terminal and type a message, the bootstrapper and JS peers will both print that message. + +In short, you have a chat app on a private libp2p network. + _Acknowledgements: @jhiesey for DHT (content & peer routing) JS+Go interop, @stebalien for PubSub_