From 5fc20f1be9633c4f455cb220c6d667569e66b882 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 12 Dec 2025 23:24:56 +0100 Subject: [PATCH] Remove Node.js Host Guide references MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove all references to NODE_HOST_GUIDE.md and test-connect.js: - README.md: Removed Node.js Host Guide section and links - ADVANCED.md: Simplified Node.js example, removed guide references Keep inline Node.js example code for reference. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- ADVANCED.md | 8 ++------ README.md | 4 ---- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/ADVANCED.md b/ADVANCED.md index ce968ea..9708262 100644 --- a/ADVANCED.md +++ b/ADVANCED.md @@ -414,9 +414,7 @@ const pc = new RTCPeerConnection() ### Node.js Service Host Example -You can host WebRTC services in Node.js that browser clients can connect to. See the [Node.js Host Guide](https://github.com/xtr-dev/rondevu-demo/blob/main/NODE_HOST_GUIDE.md) for a complete guide. - -**Quick example:** +You can host WebRTC services in Node.js that browser clients can connect to: ```typescript import { Rondevu, NodeCryptoAdapter } from '@xtr-dev/rondevu-client' @@ -446,9 +444,7 @@ await rondevu.startFilling() // Browser clients can now discover and connect to chat:1.0.0@mybot ``` -See complete examples: -- [Node.js Host Guide](https://github.com/xtr-dev/rondevu-demo/blob/main/NODE_HOST_GUIDE.md) - Full guide with complete examples -- [test-connect.js](https://github.com/xtr-dev/rondevu-demo/blob/main/test-connect.js) - Working Node.js client example +**See also:** - [React Demo](https://github.com/xtr-dev/rondevu-demo) - Complete browser UI ([live](https://ronde.vu)) --- diff --git a/README.md b/README.md index ba0827c..c0bd52b 100644 --- a/README.md +++ b/README.md @@ -168,12 +168,8 @@ const connection = await rondevu.connectToService({ - Username rules and service FQN format - Examples and migration guides -📖 **[Node.js Host Guide](https://github.com/xtr-dev/rondevu-demo/blob/main/NODE_HOST_GUIDE.md)** - Host services in Node.js - ## Examples -- [Node.js Service Host](https://github.com/xtr-dev/rondevu-demo/blob/main/NODE_HOST_GUIDE.md) - Complete guide with examples -- [test-connect.js](https://github.com/xtr-dev/rondevu-demo/blob/main/test-connect.js) - Working Node.js client example - [React Demo](https://github.com/xtr-dev/rondevu-demo) - Full browser UI ([live](https://ronde.vu)) ## License