From http://nodejs.org/api/vm.html:
JavaScript code can be compiled and run immediately or compiled, saved, and run later. [...] The returned script is not bound to any global object. It is bound before each run, just for that run.
And then in the API, no method that returns any bytes, nothing. Just a "Script" object.
So, before I politely tear down this desk beneath my arms, is there any way that I can actually SAVE the compiled script, to disk? I figure it's just ordinary raw binary data, maybe a syntax tree or whatever.