mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-03-28 05:11:04 +00:00
* chore: add missing dep * feat: import from identify push branch https://github.com/libp2p/js-libp2p-identify/tree/feat/identify-push * feat: add the connection to stream handlers * refactor: identify to async/await * chore: fix lint * test: add identify tests * refactor: add identify to the dialer flow * feat: connect identify to the registrar * fix: resolve review feedback * fix: perform identify push when our protocols change
14 lines
276 B
JavaScript
14 lines
276 B
JavaScript
'use strict'
|
|
|
|
const Transport = require('libp2p-websockets')
|
|
const Muxer = require('libp2p-mplex')
|
|
const Crypto = require('../../src/insecure/plaintext')
|
|
|
|
module.exports = {
|
|
modules: {
|
|
transport: [Transport],
|
|
streamMuxer: [Muxer],
|
|
connEncryption: [Crypto]
|
|
}
|
|
}
|