1 Star 0 Fork 7

公开的/publicElectronapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
work.ts 904 Bytes
一键复制 编辑 原始数据 按行查看 历史
Shaohqfspace 提交于 2024-01-10 19:16 . 1.10
const fs = require('fs-extra');
// 判断用户是否是第一个使用
let time = new Date();
let y = time.getFullYear();
let m = time.getMonth()+1;
let d = time.getDate();
// 数据库初始化
const readfilejson = async (path)=>{
let str = await fs.readJson(path);
// frist 作为初始化的唯一标识,因为用户有可能存在清空的情况
if(Boolean(str['First'])){
let day = `${y}-${m}-${d}`;
let objs = {[day]:'欢迎使用'};
await fs.writeJson(path,objs);
process.send?.(true);
}else{
process.send?.(false);
}
process.exit();
}
//子进程
const begin = process.argv[2]
// console.log(process.send)
if(process.send){
process.on('message', (msg) => {
// console.log('from parent', msg);
})
//监听master传来的message
readfilejson('db.json');
//向master发送信息
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/supbose/public-electronapp.git
git@gitee.com:supbose/public-electronapp.git
supbose
public-electronapp
publicElectronapp
master

搜索帮助