- How can I find out where in the C++ source code of node.js the JavaScript object gets defined which I can access through
process.binding('eval')
? - I already found out that it's in/src/node_script.cc
in this special case, but: How can I know where I can find that module just when I just take a look on the/src/
directory overview? I don't want to step through all the files in/src/
in order to look for a module. - Where can I find some deep going information about the internals of
process.binding()
s?
Thanks.