# hyperpeer-js **Repository Path**: mirrors_crs4/hyperpeer-js ## Basic Information - **Project Name**: hyperpeer-js - **Description**: Javascript module for implementing browser peers in applications based on Hyperpeer - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-03-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # hyperpeer-js hyperpeer-js is the javascript module for implementing browser peers in applications based on Hyperpeer. This module provides a single class called [`Hyperpeer`](#Hyperpeer) which manages both the connection with the signaling server and the peer-to-peer communication via WebRTC with remote peers. # Features * Simple node.js style API. * Based on the popular modules [simple-peer](https://github.com/feross/simple-peer/), [ws](https://github.com/websockets/ws), and [EventEmitter2](https://www.npmjs.com/package/eventemitter2). * Works in the browser with [browserify](http://browserify.org/). # Example ```js const Hyperpeer = require('hyperpeer') const serverAddress = 'ws://localhost:8080' // The