使用Puppeteer将结果爬网到JSON时重新启动无限

时间:2018-11-19 12:13:18

标签: javascript node.js web-crawler google-chrome-devtools puppeteer

我已成功使用Puppeteer进行了爬网。下面是从购物中心提取特定产品名称的代码。但是,我遇到了一个问题。

productFlavors {
        abc {
            resValue "string", "build_type", "Version " + defaultConfig.versionName
            applicationId "com.abc"
        }
        def {
            resValue "string", "build_type", "Version " + defaultConfig.versionName
            applicationId "com.def"
        }

我将抓取的数据发送到JSON文件(example.json)。但我在无限重启时遇到问题。我怎样才能让它只工作一次?

enter image description here

1 个答案:

答案 0 :(得分:1)

nodemon正在重新启动您的进程,因为它检测到文件更改,即。您新写的文件。

更新nodemon配置以忽略.json文件。

npm