What\'s the difference between
console.log(process.cwd())
and
console.log(__dirname);
I\'ve seen both use
process.cwd() returns the current working directory,
i.e. the directory from which you invoked the node command.
node
__dirname returns the directory name of the directory containing the JavaScript source code file