the local communication medium. 2. Enabling secure local communication using the DataChannel and WebTransport APIs. • ローカルデバイス間通信でHTTPSを使えるように(Local HTTPS) • WebTransportやDataChannel等を用いた安全な相互通信 https://github.com/WICG/local-peer-to-peer/blob/main/EXPLAINER.md#solution-approach
https://github.com/WICG/local-peer-to-peer/blob/main/EXPLAINER.md#use-cases 1. The ability for Web-based tools to work on ad-hoc networks in the absence of internet infrastructure. 2. An app that allows humanitarian field workers in remote areas with no connectivity to gather, synchronize, review, and edit data offline for several days, the data can then be synchronized with the central server when internet connection becomes available 3. A non-profit educational organization is concerned about the large file download size required for on-device speech recognition in the browser. This is problematic in low bandwidth, high latency environments such as classrooms, particularly in emerging countries. Their goal is for one student to download the file first and then easily share/distribute it with classmates without low speed internet connections any more to save time and cost
https://github.com/WICG/local-peer-to-peer/blob/main/EXPLAINER.md#use-cases 1. The ability for Web-based tools to work on ad-hoc networks in the absence of internet infrastructure. 2. An app that allows humanitarian field workers in remote areas with no connectivity to gather, synchronize, review, and edit data offline for several days, the data can then be synchronized with the central server when internet connection becomes available 3. A non-profit educational organization is concerned about the large file download size required for on-device speech recognition in the browser. This is problematic in low bandwidth, high latency environments such as classrooms, particularly in emerging countries. Their goal is for one student to download the file first and then easily share/distribute it with classmates without low speed internet connections any more to save time and cost PWAが激アツになる?
lp2p.makeDiscoverable(options); for await (const transport of listener.incomingTransports) { await transport.ready; } // Peer B const transport = lp2p.connect(options); await transport.ready; https://github.com/WICG/local-peer-to-peer/issues/35