From c202e1c6272b48a1769ebcb537a0f70137705c6e Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 14 Nov 2025 18:54:41 +0100 Subject: [PATCH] Update API URL to api.ronde.vu in examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change all examples from rondevu.xtrdev.workers.dev to api.ronde.vu - Update default baseUrl in documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0231c9c..f75c2c5 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ npm install @xtr-dev/rondevu-client ```typescript import { Rondevu, BloomFilter } from '@xtr-dev/rondevu-client'; -const client = new Rondevu({ baseUrl: 'https://rondevu.xtrdev.workers.dev' }); +const client = new Rondevu({ baseUrl: 'https://api.ronde.vu' }); // 1. Register and get credentials const creds = await client.register(); @@ -148,7 +148,7 @@ For most use cases, you should use the high-level `RondevuConnection` class inst ```typescript import { Rondevu } from '@xtr-dev/rondevu-client'; -const client = new Rondevu({ baseUrl: 'https://rondevu.xtrdev.workers.dev' }); +const client = new Rondevu({ baseUrl: 'https://api.ronde.vu' }); await client.register(); // Create a connection @@ -184,7 +184,7 @@ console.log('Share these topics with peers:', ['my-app', 'room-123']); ```typescript import { Rondevu } from '@xtr-dev/rondevu-client'; -const client = new Rondevu({ baseUrl: 'https://rondevu.xtrdev.workers.dev' }); +const client = new Rondevu({ baseUrl: 'https://api.ronde.vu' }); await client.register(); // Discover offers by topic