Writing to stdin of a running Process using @effect/platform CommandExecutor
How to continuously pipe to
In Node.js, we can simply do:
But I can't figure out how to do it using
stdin of a running Process?In Node.js, we can simply do:
But I can't figure out how to do it using
@effect/platform/CommandExecutor's Process implementation.stdin is a Sink<void, Uint8Array, never, PlatformError, never>, but idk how to write to a Sink without having access to the underlying Stream??