mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-03 00:01:04 +00:00
docs: make example from README copy & pastable (#235)
The example in the README can now be used with simply copy & pasting, no errors will be thrown. Fixes #234.
This commit is contained in:
parent
eddec7d2e4
commit
65e7223ce0
12
README.md
12
README.md
@ -118,11 +118,8 @@ const defaultsDeep = require('@nodeutils/defaults-deep')
|
|||||||
const Protector = require('libp2p-pnet')
|
const Protector = require('libp2p-pnet')
|
||||||
|
|
||||||
class Node extends libp2p {
|
class Node extends libp2p {
|
||||||
constructor (_peerInfo, _peerBook, _options) {
|
constructor (_options) {
|
||||||
const defaults = {
|
const defaults = {
|
||||||
peerInfo: _peerInfo, // The Identity of your Peer
|
|
||||||
peerBook: _peerBook, // Where peers get tracked, if undefined libp2p will create one instance
|
|
||||||
|
|
||||||
// The libp2p modules for this libp2p bundle
|
// The libp2p modules for this libp2p bundle
|
||||||
modules: {
|
modules: {
|
||||||
transport: [
|
transport: [
|
||||||
@ -136,12 +133,11 @@ class Node extends libp2p {
|
|||||||
connEncryption: [
|
connEncryption: [
|
||||||
SECIO
|
SECIO
|
||||||
],
|
],
|
||||||
connProtector: new Protector(/*protector specific opts*/),
|
// Encryption for private networks. Needs additional private key to work
|
||||||
|
// connProtector: new Protector(/*protector specific opts*/),
|
||||||
peerDiscovery: [
|
peerDiscovery: [
|
||||||
MulticastDNS
|
MulticastDNS
|
||||||
],
|
],
|
||||||
peerRouting: {}, // Currently both peerRouting and contentRouting are patched through the DHT,
|
|
||||||
contentRouting: {}, // this will change once we factor that into two modules, for now do the following line:
|
|
||||||
dht: DHT // DHT enables PeerRouting, ContentRouting and DHT itself components
|
dht: DHT // DHT enables PeerRouting, ContentRouting and DHT itself components
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -158,8 +154,6 @@ class Node extends libp2p {
|
|||||||
}
|
}
|
||||||
// .. other discovery module options.
|
// .. other discovery module options.
|
||||||
},
|
},
|
||||||
peerRouting: {},
|
|
||||||
contentRouting: {},
|
|
||||||
relay: { // Circuit Relay options
|
relay: { // Circuit Relay options
|
||||||
enabled: false,
|
enabled: false,
|
||||||
hop: {
|
hop: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user