videocall-client-socket 0.1.2 → 0.1.4
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.
- package/README.md +7 -0
- package/package.json +1 -2
- package/src/index.js +0 -1
package/README.md
CHANGED
|
@@ -12,6 +12,13 @@ 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.
|
|
17
|
+
✅ Add this in your <head>:
|
|
18
|
+
<script src="https://cdn.jsdelivr.net/npm/simple-peer/simplepeer.min.js"></script>
|
|
19
|
+
This makes SimplePeer available globally in the browser.
|
|
20
|
+
```
|
|
21
|
+
|
|
15
22
|
---
|
|
16
23
|
|
|
17
24
|
## 🚀 Quick Start
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "videocall-client-socket",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"types": "src/index.d.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"homepage": "https://github.com/EmersonJaraG28/videocall-client#readme",
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"socket.io-client": "^4.8.1",
|
|
35
|
-
"videocall-client": "file:",
|
|
36
35
|
"videocall-client-socket": "file:"
|
|
37
36
|
}
|
|
38
37
|
}
|