import { createLibp2p } from '../../dist/src/index.js' import { TCP } from '@libp2p/tcp' import { Mplex } from '@libp2p/mplex' import { Noise } from '@chainsafe/libp2p-noise' import { pipe } from 'it-pipe' import { toString as uint8ArrayToString } from 'uint8arrays/to-string' import { fromString as uint8ArrayFromString } from 'uint8arrays/from-string' const createNode = async () => { const node = await createLibp2p({ addresses: { listen: ['/ip4/0.0.0.0/tcp/0'] }, transports: [new TCP()], streamMuxers: [new Mplex()], connectionEncryption: [new Noise()] }) await node.start() return node } ;(async () => { const [node1, node2] = await Promise.all([ createNode(), createNode() ]) await node1.peerStore.addressBook.set(node2.peerId, node2.getMultiaddrs()) node2.handle('/a-protocol', ({ stream }) => { pipe( stream, async function (source) { for await (const msg of source) { console.log(uint8ArrayToString(msg)) } } ) }) const { stream } = await node1.dialProtocol(node2.peerId, '/a-protocol') await pipe( [uint8ArrayFromString('This information is sent out encrypted to the other peer')], stream ) })();