libp2p 1.2.3 → 1.2.4-2122a713d
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 +16 -0
- package/dist/index.min.js +4 -4
- package/dist/src/connection-manager/dial-queue.d.ts.map +1 -1
- package/dist/src/connection-manager/dial-queue.js +1 -0
- package/dist/src/connection-manager/dial-queue.js.map +1 -1
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.js +1 -1
- package/dist/src/upgrader.js +1 -1
- package/dist/src/upgrader.js.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.d.ts.map +1 -1
- package/dist/src/version.js +1 -1
- package/dist/src/version.js.map +1 -1
- package/package.json +25 -24
- package/src/connection-manager/dial-queue.ts +2 -2
- package/src/index.ts +2 -2
- package/src/upgrader.ts +1 -1
- package/src/version.ts +1 -1
- package/dist/typedoc-urls.json +0 -14
package/README.md
CHANGED
|
@@ -30,6 +30,21 @@
|
|
|
30
30
|
|
|
31
31
|
# About
|
|
32
32
|
|
|
33
|
+
<!--
|
|
34
|
+
|
|
35
|
+
!IMPORTANT!
|
|
36
|
+
|
|
37
|
+
Everything in this README between "# About" and "# Install" is automatically
|
|
38
|
+
generated and will be overwritten the next time the doc generator is run.
|
|
39
|
+
|
|
40
|
+
To make changes to this section, please update the @packageDocumentation section
|
|
41
|
+
of src/index.js or src/index.ts
|
|
42
|
+
|
|
43
|
+
To experiment with formatting, please run "npm run docs" from the root of this
|
|
44
|
+
repo and examine the changes made.
|
|
45
|
+
|
|
46
|
+
-->
|
|
47
|
+
|
|
33
48
|
Use the `createLibp2p` function to create a libp2p node.
|
|
34
49
|
|
|
35
50
|
## Example
|
|
@@ -163,6 +178,7 @@ List of packages currently in existence for libp2p
|
|
|
163
178
|
<a href="https://helia.io/"><img src="https://raw.githubusercontent.com/ipfs/helia/main/assets/helia.png" alt="Helia logo" width="150" /></a>
|
|
164
179
|
<a href="https://github.com/orbitdb/orbitdb"><img src="https://avatars.githubusercontent.com/u/25079463?s=200&v=4" alt="OrbitDB logo" width="150" /></a>
|
|
165
180
|
<a href="https://waku.org/"><img src="https://avatars.githubusercontent.com/u/107703624?s=200&v=4" alt="Waku" width="150" /></a>
|
|
181
|
+
<a href="https://peerbit.org/"><img src="https://github.com/dao-xyz/peerbit/blob/master/docs/peerbit-logo.png" alt="Peerbit logo" width="150" /></a>
|
|
166
182
|
</p>
|
|
167
183
|
</div>
|
|
168
184
|
|