nuzulul / webpeerjs

WebPEER.js is decentralized P2P JS library for communication between applications in browser.

Home Page:https://webpeer.js.org/demo/chat.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WebPEER.js

Decentralized P2P JS library for communication between applications in browser.

Build completely peer-to-peer web applications, no trackers or relay servers required. WebPEER.js enables browser to browser connectivity without a central server. Connecting projects safely, privately, and reliably.

Basic Connection Demo

Features

  • ✅ Decentralized P2P
  • ✅ Unlimited Peers
  • ✅ Works in Browsers
  • ✅ Broadcast Message

Security

WebPEER.js uses libp2p gossipsub to enables communication between applications.

Quickstart

Try now in Playground :

https://jsbin.com/suwesaliro/1/edit?html,output

NPM install:

npm i webpeerjs

Browser <script> tag :

Uses built-in JS files from latest release or CDN will make it's exports available as webpeerjs in the global namespace.

<script src="https://cdn.jsdelivr.net/npm/webpeerjs@0.1/dist/umd/webpeerjs.min.js"></script>

Usage

import { webpeerjs } from 'webpeerjs'

void async function main() {

	const node = await webpeerjs.createWebpeer()
	
	console.log(`My node id : ${node.id}`)
	
	const [broadcast,listen,members] = node.joinRoom('globalroom')
	
	listen((message,id) => {
		console.log(`Message from ${id} : ${message}`)
	})
	
	members((data) => {
		console.log(`Members : ${data}`)
		broadcast('hello')
	})
	
}()

API

  • createWebpeer() - Create a new node.
  • id - The unique ID of the node as an identity in the global network.
  • status - Get the node status, returns connected or unconnected.
  • peers - Get all connected peers.
  • joinRoom(namespace) - Join to the room, returns an array of three functions (Broadcaster, onListenBroadcast, onMembersUpdate).

API Docs

https://nuzulul.github.io/webpeerjs

License

MIT

Maintainers

Nuzulul Zulkarnain

About

WebPEER.js is decentralized P2P JS library for communication between applications in browser.

https://webpeer.js.org/demo/chat.html

License:MIT License


Languages

Language:JavaScript 93.6%Language:HTML 6.4%