我想更新node.js中的javascript文件(模块)然后保存它。我有以下js模块。
var test = {
scripts: ["a.js","b.js"],
getScripts: function()
{
return this.scripts;
}
}
module.exports = test;
我喜欢在其他模块中加载上述模块,然后更新脚本数组,然后将其保存回文件。我尝试使用 JSON.stringify(test),但它不保留getScripts方法。
这有什么黑客或伎俩吗?
答案 0 :(得分:0)
您几乎需要使用readfile
,文本操作scripts
数组来阅读脚本,然后使用writefile
将其写回。< / p>