Peerly allows you to build peer to peer applications with Node.js. It uses UDP hole punching to connect two peers together.
npm install peerly
import { Client } from 'peerly';
const client = new Client({
serverList: ['https://link-to-signaling-server'],
});
client.connect('UNIQUE-ID');
Read full documentation here https://jmax45.gitbook.io/peerly/
Distributed under the MIT License. See LICENSE
for more information.