gpt4 book ai didi

node.js - Node : Automatically refresh browser on file change

转载 作者:搜寻专家 更新时间:2023-10-31 22:30:32 25 4
gpt4 key购买 nike

我希望我的 Node 应用程序在文件更改时自动刷新我的浏览器(无外部应用程序)。

我想避免使用 webpack 开发服务器,因为它不允许我使用自己的 koa 服务器,而且通常使用起来很麻烦。

如何在文件更改时自动刷新浏览器?

最佳答案

尝试使用 watchr :

koa-app.js:

/.../
var watchr = require('watchr');
watchr.watch({
paths: [__dirname], listeners: {
change: function() {
// Emits an event to all connected clients
io.sockets.emit('browserReload');
}
}
})

client-side.js:

  /.../
socket.on('browserReload', function () {
// Reload without using cache
document.location.reload(true);
});

关于node.js - Node : Automatically refresh browser on file change,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35420048/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com