I have an Ubuntu instance running a Node app. This is a web server application, so it is a long-running program that doesn't exit.
If I then run a Node script: node ./something.js
, would this process use the exact same node
memory image that was running the web server app?
Nope. Each process will have separate allocated memory.