Node JS executes the codebase in the Javascript VX (V8 currently) engine, and executes every asynchronous context in its own VM.
Given this information, is there an API that allows to find in which VM context the current code execution is taking place?
I am attempting to create context-specific globals.
Is this possible? Is my understanding of Node correct?