We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb9d767 commit 920e8a2Copy full SHA for 920e8a2
README.md
@@ -125,7 +125,7 @@ class Node extends libp2p {
125
modules: {
126
transport: [
127
TCP,
128
- WS
+ new WS() // It can instances too!
129
],
130
streamMuxer: [
131
SPDY
@@ -169,13 +169,12 @@ class Node extends libp2p {
169
}
170
171
172
+ // Enable/Disable Experimental features
173
+ EXPERIMENTAL: { // Experimental features ("behind a flag")
174
+ pubsub: true,
175
+ dht: true
176
+ }
177
},
-
- // Enable/Disable Experimental features
- EXPERIMENTAL: { // Experimental features ("behind a flag")
- pubsub: true,
- dht: true
178
- }
179
180
181
// overload any defaults of your bundle using https://lodash.com/docs/4.17.5#defaultsDeep
0 commit comments