The functions you reference are javascript that runs javascript in a new context (so that it can be safe, have new functions, etc.) ... not saving the precompiled binary ...
If you need information on how to really reload a precompiled script, you can look at the source of node.js. The node.js file itself is precompiled and loaded as a binary file (if you create it using this option). At the same time, it starts node faster.
However, you should keep in mind that there are few advantages for this, unless you think about a specific process (for example, node.js) using the V8 library, which will start / stop / start / stop. etc. The reason is that the V8 library will only compile your script once - and then will execute it as machine code every time after that or as long as the V8 library is running.
Pre-compiling and downloading as a binary file will lead to some significant drawbacks, including the dependencies of your software architecture (even in x86 32-bit from x86_64), etc. Thus, it may not be the best design decision.
source share