webpeerjs 0.1.3 → 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.
- package/README.md +12 -6
- package/dist/esm/webpeerjs.js +18 -18
- package/dist/umd/webpeerjs.js +19 -19
- package/package.json +3 -3
- package/src/config.js +13 -3
- package/src/utils.js +1 -0
- package/src/webpeerjs.js +217 -23
package/README.md
CHANGED
|
@@ -1,20 +1,26 @@
|
|
|
1
1
|
# WebPEER.js
|
|
2
2
|
> Decentralized P2P JS library for communication between applications in browser.
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
[WebPEER.js](https://github.com/nuzulul/webpeerjs) enables browser to browser connectivity without a central server. Build completely peer-to-peer web applications, no trackers or relay servers required. Connecting projects safely, privately, and reliably.
|
|
5
5
|
|
|
6
6
|
[Basic Connection Demo](https://nuzulul.github.io/webpeerjs/demo/)
|
|
7
7
|
|
|
8
|
+
## Security
|
|
9
|
+
|
|
10
|
+
WebPEER.js uses [`libp2p gossipsub`](https://docs.libp2p.io/concepts/security/security-considerations/#publish--subscribe) to enables communication between applications.
|
|
11
|
+
|
|
8
12
|
## Features
|
|
9
13
|
|
|
10
14
|
* ✅ Decentralized P2P
|
|
11
|
-
* ✅
|
|
15
|
+
* ✅ Scalable Peers
|
|
12
16
|
* ✅ Works in Browsers
|
|
13
|
-
* ✅ Broadcast
|
|
17
|
+
* ✅ Broadcast Messages
|
|
18
|
+
* ✅ Censorship Resistant
|
|
14
19
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
20
|
+
## Browser Support
|
|
21
|
+
 |  |  |  |  |  |
|
|
22
|
+
--- | --- | --- | --- | --- | --- |
|
|
23
|
+
Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ |
|
|
18
24
|
|
|
19
25
|
## Quickstart
|
|
20
26
|
|