django-vue3-admin-web/node_modules/cron-chinese
2025-10-20 21:21:14 +08:00
..
index.d.ts 初始化 2025-10-20 21:21:14 +08:00
index.js 初始化 2025-10-20 21:21:14 +08:00
LICENSE 初始化 2025-10-20 21:21:14 +08:00
package.json 初始化 2025-10-20 21:21:14 +08:00
README.md 初始化 2025-10-20 21:21:14 +08:00

cron-chinese

一个将 Cron 转换为中文的工具。

npm

如何使用

npm install cron-chinese
import { humanizeCronInChinese } from "cron-chinese";

humanizeCronInChinese('* * * * *'); // 每分钟
humanizeCronInChinese('0 0 * * *'); // 每日00:00
humanizeCronInChinese('0 0 1 * *'); // 每月1日00:00
humanizeCronInChinese('*/2 * * * *'); // 每隔2分钟
humanizeCronInChinese('45 4 1,10,20 * *') // 每月1,10,20日04:45

更多示例请查看测试文件:index.spec.js