node.js - What happens under the hood when I type "Node server.js" -
is "instance" of node? special provisions os node instance get?
if asking if there 1 big process of node, executes scripts, or if each script executed own instance, answer second.
each script has own node instance. far know, each instance has same provisions bash, python, perl, etc have.
try ps ax|grep node
see current instances in execution.
Comments
Post a Comment