Edit: Node uses bytecode since Node 8.3, before that, sources were compiled directly to machine code.
I do a lot of Python coding, and there's always bytecode lying around in .pyc files.
I was wondering if node stores its machine code in similar files, eg it would make sense to keep the machine code representation around on disk and re-use it if a file's source is unchanged.
If so, where does node/v8 store this machine code?
Edit 2: As @dystroy mentions below this is a dupe of How can I see the machine code generated by v8?