Node.js,Express.js - 写入JSON文件

时间:2015-09-11 10:07:51

标签: javascript json node.js express

我正在编写一个Express.js应用程序,该应用程序应该能够创建带有请求信息的JSON格式输出,并相应地将此信息写入JSON文件。我是Node& Express的新用户,到目前为止,我已尝试使用fs.writeFile('file.json', data, function(err){}),但我需要将data附加到file.json。完美的输出应该是:

[
  {somekey: someValue},
 //each time the new request is sent the object should be added here
  {shomeKeyFromNewRequest: someValueFromNewRequest}
]

0 个答案:

没有答案