nodemon 排除文件夹/文件不起作用 - win10

Posted

技术标签:

【中文标题】nodemon 排除文件夹/文件不起作用 - win10【英文标题】:nodemon exclude folders/files not working - win10 【发布时间】:2021-11-18 01:29:18 【问题描述】:

Nodemon - exclusion of files这是一个很受欢迎的问题,但很多人都无法解决问题,包括我自己。

我将不得不解决这个问题(我无法移动我的 index.js 文件),所以我会在找到解决方案时发布我的解决方案。

Aviator@AW:/mnt/c/Users/Adrian$ nodemon index.js --ignore exclude_nodemon.json
[nodemon] 2.0.13
[nodemon] to restart at any time, enter `rs`
[nodemon] watching path(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node index.js`
Hello
[nodemon] Internal watch failed: EBADF: bad file descriptor, watch '/mnt/c/Users/Adrian/AppData/Local/ElevatedDiagnostics'
Aviator@AW:/mnt/c/Users/Adrian$

exclude_nodemon.json 的内容:


      "verbose": true,
        "ignore": ["*.test.js", "AppData/*"],

也试过了:

nodemon index.js --ignore "AppData/*" 
nodemon index.js --ignore 'AppData/*' 

但结果是一样的。

已尝试:nodemon index.js --ignore AppData/ 得到了[nodemon] Internal watch failed: EBADF: bad file descriptor, watch /mnt/c/Users/Adrian/Local Settings/ElevatedDiagnostics。 已尝试:nodemon index.js --ignore AppData/ Local\ Settings/ 得到:[nodemon] starting `node index.js "Local Settings/" 同样的错误。 试过了:nodemon index.js --ignore AppData/, Local\ Settings/ 同样的错误。

【问题讨论】:

【参考方案1】:

nodemon index.js --ignore AppData/ --ignore Local\ Settings/

【讨论】:

以上是关于nodemon 排除文件夹/文件不起作用 - win10的主要内容,如果未能解决你的问题,请参考以下文章

Nodemon 检查/调试不起作用?

docker中的Nodemon不起作用,--legacy-watch -L也不起作用

在 sonar-project.properties 文件中排除的目录不起作用(对我来说)

Webstorm- Nodemon + Typescript + Docker - 调试器已连接但断点不起作用

hosts文件不起作用

当 bundle.js 发生变化时,Nodemon 不断重启我的服务器