我将 nodejs 从 8 更新到 10.12 并收到该警告消息。
D:\BitBucket\EA Studio>node index
DEPRECIATION: imediateStart is deprecated and will be removed soon in favor of the options param.
...
包.json
{
"dependencies": {
...
"node-cron": "^2.0.3",
}
用法:
"use strict";
const cron = require("node-cron");
cron.schedule("5 * * * *", () => null, false);
有什么解决办法吗?
由于我没有imediateStart
在我的代码中使用,因此警告来源必须在node-cron
. 开发人员这样做是为了不要忘记更新自己的代码吗?最好显示:“此版本的 node-cron 使用已弃用的代码。请在发布后立即将其更新到版本 xxx”。