nodejs __dirname 与 process.cwd()的区别

Posted wj0816

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs __dirname 与 process.cwd()的区别相关的知识,希望对你有一定的参考价值。

var cwd = process.cwd();
console.log(cwd);
console.log(__dirname);
  • 1
  • 2
  • 3

cwd() 是当前执行node命令时候的文件夹地址 
__dirname 是被执行的js 文件的地址

参考文档 http://stackoverflow.com/questions/9874382/whats-the-difference-between-process-cwd-vs-dirname

 
 

以上是关于nodejs __dirname 与 process.cwd()的区别的主要内容,如果未能解决你的问题,请参考以下文章

与nodejs无法正常工作的imagemagick

nodejs 2017

[NodeJS]常用模块简单讲解

[F2016061801] NodeJS之旅-使用webpack构建项目时遇到__dirname路径不对

nodejs出现require is not defined和__dirname is not define 错误

NodeJS基础