mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-02 15:51:06 +00:00
* feat: new super simplified API * feat: append peer id to multiaddr if not there * [WIP] Awesome DHT (#86) * feat: integrate dht * better interfaces * docs: add documentation for peerRouting, contentRouting, dht * fix: take in passed datastore * fix: update usage of _getPeerInfo * fix: getPeerInfo * docs: update docs * moar feat: correctly handle p2p-circuit addrs when creating a peer info object refactor: rework config options * feat: adding circuit relaying * feat: rework circuit relay for protobufs * feat: circuit loading and tests * fix: clean up _getPeerInfo to work with /p2p-circuit * wip: tests cleaup * test: clean up * wip * fix: bringing back test reworks and new aegir * test: group tests * test: clean up * test: adjust test * fix: use getPeerId to determine if the ipfs fragment is missing * feat: adding circuit relaying * feat: circuit loading and tests * test: clean up * wip * feat: upgrade to latest aegir * fix: removing unused tests * feat: cleanup tests * fix: create node defautl options * chore: upgrade swarm to latest version * fix: updated aegir and adjust timeouts * feat: more timeouts * chore: updating deps * fix: circle ci builds * test: timeouts
46 lines
994 B
JavaScript
46 lines
994 B
JavaScript
/* eslint-env mocha */
|
|
'use strict'
|
|
|
|
const chai = require('chai')
|
|
chai.use(require('dirty-chai'))
|
|
const Node = require('./nodejs-bundle')
|
|
const PeerInfo = require('peer-info')
|
|
const PeerId = require('peer-id')
|
|
const waterfall = require('async/waterfall')
|
|
const pull = require('pull-stream')
|
|
|
|
function createNode (multiaddrs, options, callback) {
|
|
if (typeof options === 'function') {
|
|
callback = options
|
|
options = {}
|
|
}
|
|
|
|
options = options || {}
|
|
|
|
if (!Array.isArray(multiaddrs)) {
|
|
multiaddrs = [multiaddrs]
|
|
}
|
|
|
|
waterfall([
|
|
(cb) => PeerId.create({ bits: 1024 }, cb),
|
|
(peerId, cb) => PeerInfo.create(peerId, cb),
|
|
(peerInfo, cb) => {
|
|
multiaddrs.map((ma) => peerInfo.multiaddrs.add(ma))
|
|
cb(null, peerInfo)
|
|
},
|
|
(peerInfo, cb) => {
|
|
const node = new Node(peerInfo, undefined, options)
|
|
cb(null, node)
|
|
}
|
|
], callback)
|
|
}
|
|
|
|
function echo (protocol, conn) {
|
|
pull(conn, conn)
|
|
}
|
|
|
|
module.exports = {
|
|
createNode: createNode,
|
|
echo: echo
|
|
}
|