作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用electronic-reload的Electron项目,文件结构为:
./public/templates/ --------- contains some html that should be watched and trigger reload
./public/templates/test/ ---- contains some test/experimental html that should be ignored/not trigger reload
./notes --------------------- just containing some notes, this should not trigger reload
./node_modules -------------- should be ignored
./main.js ------------------- should trigger reload on change
ignored
选项来忽略目录。
require('electron-reload')(__dirname, {ignored: /node_modules|notes|public\/templates\/test/gi});
public/templates/test/
正在重新加载应用程序。
electron 5.0.6
electron-reload 1.5.0
最佳答案
您可以检查eletron-reload module。
electro_reload(路径,选项):
{ignored: /node_modules|[\/\\]\./, argv: []}
。 node_modules
,
files/img
,
resorces
。
main.js
为:
//main.js
const ignoredNode = /node_modules|[/\\]\./;
const ignored1 = /resources|[/\\]\./; // all folder resorces => resources
const ignored2 = /files\/img|[/\\]\./; //all folder files/img => files/img
if (process.env.NODE_ENV !== 'production'){
require('electron-reload')(__dirname, {ignored: [ignored1, ignored2, ignoredNode] });
}
reload
:
node_modules
,
files/img
,
resorces
。
regular expressions
来实现您的目的。
关于javascript - 如何使用 Electron 重新加载忽略多个目录和文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58673513/
我是一名优秀的程序员,十分优秀!