Skip to content

↔️ Proposal for local communication between browsers without the aid of a server.

License

Notifications You must be signed in to change notification settings

WICG/local-peer-to-peer

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

220b795 · Dec 13, 2023

History

84 Commits
Nov 21, 2023
Jun 20, 2023
Nov 21, 2023
Nov 21, 2023
Nov 10, 2023
Nov 10, 2023
Dec 11, 2023
Nov 10, 2023
Dec 4, 2023
Dec 13, 2023
Nov 10, 2023

Repository files navigation

Local Peer-to-Peer API

Local Peer-to-Peer is a Web platform API proposal for local communication between browsers without the aid of a server.

const conn = await new LP2PRequest(options).start();
const channel = conn.createDataChannel("chat");

channel.onopen = (event) => {
  channel.send("Hi you!");
};

For a more in-dept overview of the proposal, please see the Explainer.

Status

This specification is a work in progress.

Links

Feedback

We welcome feedback via the issue tracker of this GitHub repo. Contributions are welcome via pull requests too.

About

↔️ Proposal for local communication between browsers without the aid of a server.

Resources

License

Code of conduct

Stars

Watchers

Forks