2018-10-19 17:37:34 +02:00
|
|
|
/* eslint-disable no-console */
|
2017-07-08 22:10:47 +01:00
|
|
|
'use strict'
|
|
|
|
|
2020-01-06 18:01:28 +01:00
|
|
|
const Libp2p = require('../../')
|
2017-07-08 22:10:47 +01:00
|
|
|
const TCP = require('libp2p-tcp')
|
2018-02-19 09:46:11 +00:00
|
|
|
const Mplex = require('libp2p-mplex')
|
2021-08-19 13:18:50 +02:00
|
|
|
const { NOISE } = require('@chainsafe/libp2p-noise')
|
2018-11-14 18:50:17 +01:00
|
|
|
const Bootstrap = require('libp2p-bootstrap')
|
2017-07-08 22:10:47 +01:00
|
|
|
|
2021-01-19 11:02:56 +01:00
|
|
|
const bootstrapers = require('./bootstrapers')
|
2017-07-08 22:10:47 +01:00
|
|
|
|
2020-01-06 18:01:28 +01:00
|
|
|
;(async () => {
|
|
|
|
const node = await Libp2p.create({
|
2020-05-15 15:37:47 +02:00
|
|
|
addresses: {
|
|
|
|
listen: ['/ip4/0.0.0.0/tcp/0']
|
|
|
|
},
|
2020-01-06 18:01:28 +01:00
|
|
|
modules: {
|
|
|
|
transport: [TCP],
|
|
|
|
streamMuxer: [Mplex],
|
2020-10-07 16:16:36 +02:00
|
|
|
connEncryption: [NOISE],
|
2020-01-06 18:01:28 +01:00
|
|
|
peerDiscovery: [Bootstrap]
|
|
|
|
},
|
|
|
|
config: {
|
|
|
|
peerDiscovery: {
|
|
|
|
bootstrap: {
|
|
|
|
interval: 60e3,
|
|
|
|
enabled: true,
|
|
|
|
list: bootstrapers
|
2018-06-28 10:06:25 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-08 22:10:47 +01:00
|
|
|
}
|
2020-01-06 18:01:28 +01:00
|
|
|
})
|
2018-06-28 10:06:25 +02:00
|
|
|
|
2020-05-15 15:37:47 +02:00
|
|
|
node.connectionManager.on('peer:connect', (connection) => {
|
|
|
|
console.log('Connection established to:', connection.remotePeer.toB58String()) // Emitted when a peer has been found
|
2020-01-06 18:01:28 +01:00
|
|
|
})
|
2017-07-08 22:10:47 +01:00
|
|
|
|
2020-05-15 15:37:47 +02:00
|
|
|
node.on('peer:discovery', (peerId) => {
|
2019-04-11 15:52:04 +02:00
|
|
|
// No need to dial, autoDial is on
|
2020-05-15 15:37:47 +02:00
|
|
|
console.log('Discovered:', peerId.toB58String())
|
2017-07-08 22:10:47 +01:00
|
|
|
})
|
|
|
|
|
2020-01-06 18:01:28 +01:00
|
|
|
await node.start()
|
|
|
|
})();
|