Created
June 21, 2022 07:37
-
-
Save frank-dspeed/06ec4b1e763653ef2944a23e542b626d to your computer and use it in GitHub Desktop.
WDA Web Driven Application Development
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## The Problem?! | |
We need a secure channel or interface between the app and our backend logic (nativ code) | |
## Solutions | |
- Spawn a SocksProxy | |
- Spawn a HTTP/3 or HTTP/2 Server | |
- use the DevTools Protocol (less overhead then TCP/IP) when used via pipe | |
- Streaming a file without the TCP IP Stack is possible via XHReqest from file url | |
- chrome-extension fired by a other app mounting fuse block device memfs <No Overhead> as the file descriptor gets passed via boundarys | |
## Upcoming Solutions | |
exposing a directory for messaging most best a memory based |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment