Currently I'm looking to try to get something in a Hash
format in Ruby from JS.
I have a JS module that looks something like this
module.exports = {
key1: "val",
key2: {
key3: "val3"
}
...
}
This is given to me as just one string. I'm aware that ExecJS could be helpful here but I'm not sure what the best way to convert it to a Hash would be.
I'm currently trying to do something like this
contents.prepend("var module = {exports: {}};\n")
context = ExecJS.compile contents
context.eval('module.exports').to_hash
But when giving it a string like above I'm getting a parsing error from the JSON gem.
I just tried putting this in a script and running it:
Maybe you're getting the JSON parse error because the module contains something which can't be serialized.
Here's another approach.
Make a JS file which loads the module and exports it as JSON.
Run that with
nodejs my_script.js
then read it from Ruby: