@device-portal/react 0.0.9 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -14,6 +14,8 @@ npm install @device-portal/react
14
14
 
15
15
  It is expected that the package will be used on two different devices. Create for them two separate pages or apps. Let's call them App A and App B. Both apps will be linked by same `room` (e.g. `'my-test-room'`).
16
16
 
17
+ > **Note:** The example signaling server `wss://device-portal.filipchalupa.cz` is running on a free instance of render.com, so expect slower startup times if it has been inactive.
18
+
17
19
  ### One-way Data Flow
18
20
 
19
21
  This is the simplest use case where a `Provider` sends data to one or more `Consumer`s.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@device-portal/react",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "Simple WebRTC data channel for React.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -38,7 +38,7 @@
38
38
  "react": "18 || 19"
39
39
  },
40
40
  "dependencies": {
41
- "@device-portal/client": "^0.0.9"
41
+ "@device-portal/client": "^0.0.10"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@babel/core": "^7.24.0",