Gathering detailed insights and metrics for aws-cron-parser
Gathering detailed insights and metrics for aws-cron-parser
Gathering detailed insights and metrics for aws-cron-parser
Gathering detailed insights and metrics for aws-cron-parser
npm install aws-cron-parser
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
25 Stars
44 Commits
6 Forks
4 Watching
6 Branches
6 Contributors
Updated on 05 Nov 2024
Minified
Minified + Gzipped
TypeScript (96.72%)
JavaScript (3.28%)
Cumulative downloads
Total Downloads
Last day
-46.4%
2,523
Compared to previous day
Last week
9.6%
21,791
Compared to previous week
Last month
10.7%
82,864
Compared to previous month
Last year
198.4%
426,861
Compared to previous year
This utility was built to process AWS Cron Expressions used by Amazon CloudWatch. It can support all the specs listed in the link below, including the special wildcards L W and #.
1npm install aws-cron-parser
There are only 3 methods: parse
, next
, and prev
1import awsCronParser from "aws-cron-parser"; 2 3// first we need to parse the cron expression 4const cron = awsCronParser.parse("9 * 7,9,11 5 ? 2020,2022,2024-2099"); 5 6// to get the first occurrence from now 7let occurrence = awsCronParser.next(cron, new Date()); 8 9// to get the next occurrence following the previous one 10occurrence = awsCronParser.next(cron, occurrence); 11 12// and use prev to get the previous occurrence 13occurrence = awsCronParser.prev(cron, occurrence);
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 3/21 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
license file not detected
Details
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
14 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More