I have a Rails application that needs to run a node script. I imagine that using the ExecJS gem is the cleanest way to run JavaScript from a Rails app. However, so far, Exec
ExecJS people say use commonjs.rb
https://github.com/cowboyd/commonjs.rb
Why can't I use CommonJS require() inside ExecJS?
ExecJS provides a lowest common denominator interface to any JavaScript runtime. Use ExecJS when it doesn't matter which JavaScript interpreter your code runs in. If you want to access the Node API, you should check another library like commonjs.rb designed to provide a consistent interface.
But this doesn't work basically. The require
acts completely erratically - I had to execute npm -g install pdfkit fs
between env =
and env.require
in
require 'v8'
require 'commonjs'
env = CommonJS::Environment.new(V8::Context.new, path: ::Rails.root )
env.require 'script'
for the module lookup to work O.o and if I tried pointing path
to the node_modules
folder then it would be impossible for the gem to find script
(not to mention that the #new
and require
are basically the only documented methods - only methods afaik - and #new
is misdocumented :P)
Your options as far as I can tell:
system(node ...)
- you can use Cocaine to escape some gotcha's (piping output, error handling, performance tweaks, ...) and run a cleaner syntax - this is not as bad as it looks - this is how paperclip does image postprocessing (imagemagick
system package + cocaine
) so I guess it's very stable and very doableprawn
:)I'm not sure of the answer but maybe you need to precise the exec_js_runtime environment variable to be node.
Something like ENV['EXECJS_RUNTIME'] = 'Node'
You can try to put it in the config/boot.rb or just to define the EXECJS_RUNTIME in your environment, something like export EXECJS_RUNTIME=Node
Hope it helps
Get rid of ExecJS and anything that depends on ExecJS. I tried all the other suggestions, but this actually fixed it.
ES6 has been around since 2015. Any tool worth using supports it by now. MICROSOFT EDGE supports it by now. Seriously.
It's erroring out because require() is not supported by EvalJS. 'require' is undefined, and undefined is not a function. ;)