Osama Abbas

Results 46 comments of Osama Abbas

This is because, in the case of bytenode, you get the exit code of bytenode process itself. The use of `spawnSync` in bytenode CLI needs to be corrected to capture...

Let me know if this workaround solves your issue. I'm a bit busy so I won't work on this fix unless necessary.

I guess the problem is because your electron is locally installed and you are trying to use the globally-installed bytenode. With the latest change, (global) bytenode will look for the...

If both are installed locally, then I cannot reproduce your issue. If you can create a minimal setup that shows the error, then we can look into it.

No worries, take your time.

Thank you for this improvement. Removing the global object will break using bytenode repl. So let me think if we can fix this in a cleaner way. Otherwise, I think...

> I've tried to run `bytenode --compile ./**/*.js` against node_modules, however, it failed with > > > Error: Cannot find file '/home/toshiba/open-source/node-hello/node_modules/ipaddr.js' > > I've ran `npm i express` to...

This should work: ``` node --max-old-space-size=7500 -r bytenode test.jsc ``` Given that `bytenode` is installed locally.

This bug should be fixed in `cli.js`. Thank you for reporting.

Could you please provide a complete minimal example that shows the problem with a simple `npm install && npm run`? Also, try running the project like this: `node -r bytenode...