{"id":26315770,"url":"https://github.com/jamalianpour/cron_expression_descriptor","last_synced_at":"2026-05-07T18:12:45.547Z","repository":{"id":230046424,"uuid":"778307678","full_name":"Jamalianpour/cron_expression_descriptor","owner":"Jamalianpour","description":"Dart library for describe cron expressions, convert cron expressions to human readable","archived":false,"fork":false,"pushed_at":"2024-03-28T09:29:17.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-25T03:08:52.329Z","etag":null,"topics":["cron","dart","flutter"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/cron_expression_descriptor","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Jamalianpour.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-03-27T13:33:03.000Z","updated_at":"2024-12-15T11:21:09.000Z","dependencies_parsed_at":"2025-06-25T03:08:53.528Z","dependency_job_id":"b10c9074-a61c-4136-91eb-fdebfe251c8c","html_url":"https://github.com/Jamalianpour/cron_expression_descriptor","commit_stats":null,"previous_names":["jamalianpour/cron_expression_descriptor"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Jamalianpour/cron_expression_descriptor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jamalianpour%2Fcron_expression_descriptor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jamalianpour%2Fcron_expression_descriptor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jamalianpour%2Fcron_expression_descriptor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jamalianpour%2Fcron_expression_descriptor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jamalianpour","download_url":"https://codeload.github.com/Jamalianpour/cron_expression_descriptor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jamalianpour%2Fcron_expression_descriptor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32749785,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cron","dart","flutter"],"created_at":"2025-03-15T12:20:18.106Z","updated_at":"2026-05-07T18:12:45.514Z","avatar_url":"https://github.com/Jamalianpour.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cron Expression Descriptor\nThis is a simple Dart library for describe cron expressions. currently it's support simple 5 segment cron expression.\n\n      ┌───────────── minute (0 - 59)\n      │ ┌───────────── hour (0 - 23)\n      │ │ ┌───────────── day of month (1 - 31)\n      │ │ │ ┌───────────── month (1 - 12)\n      │ │ │ │ ┌───────────── day of week (0 - 6)\n      │ │ │ │ │\n      │ │ │ │ │\n      │ │ │ │ │\n      * * * * *  cron expression\n\n## Getting started\n\nAdd dependencies into you project pubspec.yaml file:\n\n```yaml\ndependencies:\n  cron_expression_descriptor: ^0.9.0\n```\n\n## Usage\n\nA simple usage example:\n\n```dart\nimport 'package:cron_expression_descriptor/cron_expression_descriptor.dart';\nmain() {\n  final CronExpressionDescriptor cronExpressionDescriptor = CronExpressionDescriptor();\n\n  print(\n    cronExpressionDescriptor.convertCronToHumanReadable(cronExpression: '15 14 1 * *'),\n  );\n  // output: At 14:15, on day 1 of the month\n}\n```\n\n## Output examples\nSome other examples of Descriptor is like:\n\n```\n* * * * *          -\u003e \"Every minute\"\n\n* * */10 */9 */4   -\u003e \"Every minute, every 10 days, every 4 days of the week, every 9 months\"\n\n0 22 * * 1-5       -\u003e \"At 22:00, Monday through Friday\"\n\n15 1,12 1 */2 *    -\u003e \"At minute 15 of 1 and 12, on day 1 of the month, every 2 months\"\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamalianpour%2Fcron_expression_descriptor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjamalianpour%2Fcron_expression_descriptor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamalianpour%2Fcron_expression_descriptor/lists"}