Description
Really nice work! I threw together a quick demo of trying to run an unmodified build of Yarn within Nodebox; it almost works, which would be incredibly useful for writing tutorials for our website! Here are some of my findings:
blockers
-
Thehttp2
module seems missing. It's used bygot
, one of our dependencies, so we can't disable it. -
The Brotli functions (in particularzlib.brotliDecompressSync
) don't seem supported. -
Bug:new URL('npm:1.2.3').pathname === '//1.2.3'
; the//
is extraneous and breaks Yarn -
Missing worker support (we have a build that can disable it; I need to try without). -
Bug: The
Worker
constructor doesn't support theeval
parameter.
workarounds
-
The trailing\n
added to strings going throughconsole.log(...)
seems missing from theshell.stdout
stream - I suspect it's because you also forward it to the caller'sconsole.log
function. -
Speaking of which, it'd be good to have a way to disable this automatic forwarding - either as an option, or possibly when detecting that there are listeners bound to the
data
event? -
Data written on stdout viaprocess.stdout.write
(rather thanconsole.log
) don't seem to trigger theshell.stdout
callback. I workaround this by doing aprocess.stdout.write = console.log
right before spawning the process. -
I didn't manage to catch the output fromshell.stderr
- it seems the callback is never called. Yarn doesn't use stderr so it's not a problem for my use case. -
It doesn't seem possible at the moment to set environment variables in the shell before spawning the process. It'd be nice if it was natively supported (for example by anenv
option on bothemulator.shell.create()
andshell.runCommand()
). -
It seems that even once the process within a shell exits,
shell.kill()
must be called if we want to run a new command (seems it's just a matter ofshell.id
not being reset on exit).
nits
-
It'd be nice to have an helper function doing the equivalent of
new Promise((resolve) => shell.on(
exit, resolve));
-
The
iframe
parameter from theNodebox
constructor should probably be moved toconnect
, since it's not needed until this point. This way the instance can be created before we have the ref to the iframe.