1 Star 1 Fork 3

wt/JdScripts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
onlyOneExecute.js 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
huangjj 提交于 2021-03-21 12:35 . fix
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();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/wt408/JdScripts.git
git@gitee.com:wt408/JdScripts.git
wt408
JdScripts
JdScripts
main

搜索帮助