gpt4 book ai didi

node.js - 在两个 Node.js 实例之间共享文件

转载 作者:太空宇宙 更新时间:2023-11-03 22:36:28 24 4
gpt4 key购买 nike

我有这个要求。

在一个应用程序中,用户创建并保存他的设计。在另一个网址中,用户将运行他的应用程序,即

http://localhost:3000/design   
http://localhost:3002/application

用户发布他的设计更改,应用程序将具有新的更改。

为了满足这个要求,我可以传递html并每次使用fs写入更改。但是,我想知道是否可以在两个实例之间使用单个文件并实现观察者模式,即每当在设计器文件中进行一些更改并保存时,相同的更改应该反射(reflect)在应用程序中,而无需每次都传递数据。

最佳答案

怎么样fs.watchFilefs.watch

fs.watchFile('message.text', function (curr, prev) {
console.log('the current mtime is: ' + curr.mtime);
console.log('the previous mtime was: ' + prev.mtime);
});

关于node.js - 在两个 Node.js 实例之间共享文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27352947/

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