9951 explained code solutions for 126 technologies
nodejsHow to run Node.js script in background
nohup node script.js > log.log &ctrl + c
nohupallows running commands in background | nodeNode.js executable |
script.jspath to Node.js script file | log.logwill contain output from script (if any) |
|