代码拉取完成,页面将自动刷新
const exec = require("child_process").execSync;
const fs = require("fs");
const axios = require("axios");
const smartReplace = require("./smartReplace");
async function changeFiele() {
let response = await axios.get(process.env.SYNCURL);
let content = response.data;
content = await smartReplace.inject(content);
await fs.writeFileSync("./executeOnce.js", content, "utf8");
console.log("替换变量完毕");
}
async function start() {
console.log(`北京时间 (UTC+08):${new Date(new Date().getTime() + 8 * 60 * 60 * 1000).toLocaleString()}}`);
if (process.env.JD_COOKIE) {
console.log(`当前共${process.env.JD_COOKIE.split("&").length}个账号需要签到`);
} else {
console.log("请填写 JD_COOKIE 后在继续");
}
if (!process.env.SYNCURL) {
console.log("请填写 SYNCURL 后在继续");
return;
}
try {
await changeFiele();
await exec("node executeOnce.js", { stdio: "inherit" });
} catch (e) {
console.log("执行异常:" + e);
}
console.log("执行完毕");
}
start();
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。