Software Engineering :: Programming :: Languages :: JavaScript :: Runtimes :: Node.js :: Process :: process.exitCode
⪼ Made with 💜 by Polyglot.
- Software Engineering :: Operating Systems :: Linux :: Command :: Shell :: Exit Status
- TIL about process.exitCode = 1
A number which will be the process exit code, when the process either exits gracefully, or is exited via process.exit() without specifying a code.
Specifying a code to process.exit(code) will override any previous setting of process.exitCode.