videocall-client-socket 0.1.4 → 0.1.5

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 +6 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -12,13 +12,16 @@ A simple WebRTC client library for peer-to-peer video calls using [simple-peer](
12
12
  npm install videocall-client-socket
13
13
  ```
14
14
 
15
- ```bash
16
- This package expects simple-peer to be loaded via CDN in your HTML if you're not bundling it directly.
15
+ ⚠️IMPORTANT!!!⚠️
16
+ This package expects simple-peer to be loaded via CDN in your HTML.
17
17
  ✅ Add this in your <head>:
18
+
19
+ ```bash
18
20
  <script src="https://cdn.jsdelivr.net/npm/simple-peer/simplepeer.min.js"></script>
19
- This makes SimplePeer available globally in the browser.
20
21
  ```
21
22
 
23
+ This makes SimplePeer available globally in the browser.
24
+
22
25
  ---
23
26
 
24
27
  ## 🚀 Quick Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "videocall-client-socket",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "main": "src/index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "scripts": {