human_crontab 1.0.0
human_crontab: ^1.0.0 copied to clipboard
A library for parsing and formatting crontab patterns into a human-readable strings.
A package to convert crontabs to a human readable format much like crontab.guru
Getting started #
Add it to pubspec.yaml:
dependencies:
human_crontab:
git: https://github.com/TekExplorer/dart_human_crontab
or install via pub:
dart pub add --git-url https://github.com/TekExplorer/dart_human_crontab human_crontab
Usage #
import 'package:human_crontab/human_crontab.dart';
void main() {
final cron = '30 4 */1 12 5';
print(HumanCrontab.parse(cron).toHuman());
// At 4:30 on every 1st day of the month on Friday in December
}