Docker
+ Node.js
的自动化学习强国工具易于部署,灵活可用的学习强国 PC 网页版
任务解决方案
基于 Node.js
的控制浏览器的行为,安全高效
基于 PushPlus
推送功能,通过微信远程接收学习情况和服务运行情况
链接: tech-study 互动群
二维码:
注:介于国内敏感,暂时不提供其他交流互动方式。
安装docker
以及 docker-compose
拉取 docker
镜像,创建 tech-study-docker
容器
拉取 docker
镜像
docker pull xuzhengze/tech-study-docker
创建 tech-study-docker
容器
docker compose up -d
启用 PushPlus
推送
在 PushPlus 官网 上,注册登录账号。若有其他用户,可添加为好友,发送好友消息。
更改 Push 配置
(config/push.ts
),设置管理员token
(管理员
能接收到服务推送,用户
只能收到自己的学习推送)
{
// 其他配置...
/**
* @description 管理员的 token
*/
token: '管理员 token',
}
查看更改 Schedule 配置
(config/schedule.ts
),单或多个定时任务配置
[
{
/**
* @description 用户昵称
*/
nick: '用户昵称',
/**
* @description 管理员或者好友 token
*/
token: '用户 token',
/**
* @description cron 表达式
* @example '0 0 12 * * ?' 表示12点, ['0 0 12 * * ?', '0 0 13 * * ?'] 表示12和13点
*/
cron: '0 0 12 * * ?',
/**
* @description 学习项目配置
* @example [文章选读, 视听学习, 每日答题, 专项练习]
*/
taskConfig: [true, true, true, true],
/**
* @description 专项练习 答题失败(由于答完结算,仅包含答题异常或无答案)退出不提交
* @example true 退出答题不提交 false 继续答题
*/
paperExitAfterWrong: false,
},
];
# 关于`node-schedule`定时任务的`cron`表达式
* * * * * *
┬ ┬ ┬ ┬ ┬ ┬
│ │ │ │ │ │
│ │ │ │ │ └ 星期 (0 - 7) (0 或 7 是星期天)
│ │ │ │ └───── 月 (1 - 12)
│ │ │ └────────── 日 (1 - 31)
│ │ └─────────────── 时 (0 - 23)
│ └──────────────────── 分 (0 - 59)
└───────────────────────── 秒 (0 - 59,可选)
进入容器,启动项目
进入 tech-study-docker
容器
docker compose exec tech-study-docker bash
启动 node
项目
pnpm start