Node.js Overview

Packages

node -c your_script.js #syntax check
node -p "crypto.randomBytes(16).toString('hex')"
node -p "process.argv" hello world #[<path/to/node.js>, 'hello', 'world']
node --watch index.js
node --v8-options | less
node --env-file=.env script.js
node --run start

Core Functionality & System Interaction