Why?
Currently, Deno.connect only supports IPC for unix (using unstable transport: "unix"). There should be named pipes support too, which would allow IPC on Windows (as NodeJS' net mode does, it supports both, reference).
Additional info
I have tried using Deno.open but it doesn't work too well here. A native addon to Deno.connect would be way better.
Why?
Currently,
Deno.connectonly supports IPC for unix (using unstabletransport: "unix"). There should be named pipes support too, which would allow IPC on Windows (as NodeJS'netmode does, it supports both, reference).Additional info
I have tried using
Deno.openbut it doesn't work too well here. A native addon to Deno.connect would be way better.