From 50c1982ed0fd0227a4aea23e0c8c8c5e03a6f8f0 Mon Sep 17 00:00:00 2001 From: Daniel N <2color@users.noreply.github.com> Date: Mon, 10 Jun 2024 18:23:39 +0200 Subject: [PATCH] update alias --- content/guides/getting-started/webrtc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/guides/getting-started/webrtc.md b/content/guides/getting-started/webrtc.md index 591f289f..8ac6f5a4 100644 --- a/content/guides/getting-started/webrtc.md +++ b/content/guides/getting-started/webrtc.md @@ -3,8 +3,8 @@ title: "WebRTC with js-libp2p" weight: 3 description: "Learn how to use js-libp2p to establish a connection between browsers and node.js and learn about libp2p transports and concepts in practice." aliases: - - "/tutorials/browser-to-browser" - - "/guides/js-browser-to-browser" + - "/tutorials/webrtc-js-libp2p" + - "/guides/js-libp2p-webrtc" --- ## Introduction @@ -13,7 +13,7 @@ In this guide, you will learn how to establish direct peer-to-peer (p2p) connect Browser-to-browser connectivity is the foundation for distributed apps. When combined with GossipSub, like in the [universal connectivity](https://github.com/libp2p/universal-connectivity) chat app, gives you the building blocks for peer-to-peer event-based apps with mesh topologies. -By the end of the guide, you should be familiar with the requisite libp2p and WebRTC protocols and concepts, and how to use them to establish libp2p connections between browsers. You can find [the associated code for this guide on GitHub](https://github.com/libp2p/libp2p-webrtc-guide) +By the end of the guide, you should be familiar with the requisite libp2p and WebRTC protocols and concepts, and how to use them to establish libp2p connections between browsers. You can find [the associated code for this guide on GitHub](https://github.com/libp2p/libp2p-webrtc-guide). Since js-libp2p runs both in the browser and Node.js with WebRTC being supported in both, what's covered in this guide also applies to using the WebRTC transport to dial browsers _from_ Node.js.