From c5d6b537b05fe9fdf29be725e6f2dd42fc39acbd Mon Sep 17 00:00:00 2001 From: Jessica Schilling Date: Thu, 10 Jun 2021 18:54:15 +0000 Subject: [PATCH] Update from Forestry.io Jessica Schilling updated src/_blog/a-guide-to-ipfs-connectivity-in-web-browsers.md --- src/_blog/a-guide-to-ipfs-connectivity-in-web-browsers.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/_blog/a-guide-to-ipfs-connectivity-in-web-browsers.md b/src/_blog/a-guide-to-ipfs-connectivity-in-web-browsers.md index bd0132a9..2ba9f2d1 100644 --- a/src/_blog/a-guide-to-ipfs-connectivity-in-web-browsers.md +++ b/src/_blog/a-guide-to-ipfs-connectivity-in-web-browsers.md @@ -1,5 +1,5 @@ --- -title: A Guide to IPFS Connectivity in Web Browsers +title: A guide to IPFS connectivity in web browsers description: A minimal chat example using js-ipfs in the browser. author: Discordian date: 2021-06-21 @@ -12,9 +12,7 @@ tags: - js-ipfs --- -# A Guide to IPFS Connectivity in Web Browsers - -We see a lot of questions about how to get started with using js-ipfs in the browser. I'm going to demonstrate a minimal chat example in js-ipfs entirely in the browser. It uses WebRTC to achieve browser-to-browser connectivity where possible, and a circuit relay to connect browser nodes where not. Message passing is done with [libp2p](https://docs.libp2p.io)'s [pubsub](https://docs.libp2p.io/concepts/publish-subscribe/). +We see a lot of questions about how to get started with using `js-ipfs` in the browser. I'm going to demonstrate a minimal chat example in `js-ipfs` entirely in the browser. It uses WebRTC to achieve browser-to-browser connectivity where possible, and a circuit relay to connect browser nodes where not. Message passing is done with libp2p's pubsub. ### Getting the Code