-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feedback: Yarn #2
Comments
Thanks for testing nodebox and providing such a detailed issue/beautiful demo, this is incredibly valuable. I'll work my way through this list later today and hopefully have everything fixed by tonight, will keep you updated. Update: the issues with shell.stderr/shell.stdout have been fixed, now all console/process output should be forwarded correctly, tested it on your demo and that part seems fixed. |
A small end of day update here, we now support brotli, implemented the skeleton of http/2 (will implement more of it next week), got past all the errors described in this issue and now seems like it needs worker_threads which was already planned for implementation next week to support nuxt Regarding environment variables, you can define those when calling runCommand: https://github.com/codesandbox/nodebox-runtime/blob/main/packages/nodebox/api.md#shellruncommandbinary-args-options Hoping to get this working next week, really excited to see your nice demo work perfectly |
Wouldn't |
Thanks for the speedy improvements, Jasper!
I meant that "wait for a process to exit before spawning another" is a common enough need (especially given that shells don't currently support more than one process) that it might be worth a dedicated function to avoid having to manually bind the events (which works, but is more error prone and perhaps a little harder to discover). |
Quick note: I noticed there's been a regression that makes |
Thanks for reporting that regression, just merged a fix for it, should be on production in a couple minutes |
Indeed! And I see you've started to implement worker support, very nice 👍 I think we're now hitting the problem in #22 (comment): |
I got Yarn working, but the following warning messes with the output:
|
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 YarnMissing 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.The text was updated successfully, but these errors were encountered: