Gathering detailed insights and metrics for cron-expression-input
Gathering detailed insights and metrics for cron-expression-input
Gathering detailed insights and metrics for cron-expression-input
Gathering detailed insights and metrics for cron-expression-input
cron-input-ui
Input component to generate cron expressions easily and intuitively
react-native-cron
A cron expression input. Show the user if the cron expression is valid or not.
cron-time-formatter
A Node.js utility to parse and format cron expressions into a human-readable format. It validates the input and outputs the detailed breakdown of each field in the cron expression
node-red-contrib-payload-cron
Cron scheduler node for node-red which takes the input of msg.payload as the cron expression and outputs the epoch unix timestamp at the time the cron job is triggered.
Cron UI: Input component to generate cron expressions easily and intuitively
npm install cron-expression-input
Typescript
Module System
Node Version
NPM Version
JavaScript (64.92%)
CSS (33.58%)
HTML (1.5%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
69 Stars
59 Commits
23 Forks
2 Watchers
7 Branches
3 Contributors
Updated on Jun 12, 2025
Latest Version
1.3.1
Package Id
cron-expression-input@1.3.1
Unpacked Size
221.59 kB
Size
26.13 kB
File Count
8
NPM Version
6.14.8
Node Version
14.13.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Cron Expression UI: Input component to generate cron expressions easily and intuitively, as in https://crontab.guru/
Install the package from https://www.npmjs.com/cron-expression-input
npm install cron-expression-input@1.2.7
In your code
1import "cron-expression-input/lib/cron-expression-input.min.css"; /* CSS */ 2require("cron-expression-input"); /* JAVASCRIPT */
Add the CDN to your project
1<link rel="stylesheet" href="https://unpkg.com/cron-expression-input@1.2.7/lib/cron-expression-input.min.css"> 2<script src="https://unpkg.com/cron-expression-input@1.2.7/lib/cron-expression-input.min.js"></script>
1<!DOCTYPE html> 2<html> 3<head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>Sample Page</title> 7 <link rel="stylesheet" href="https://unpkg.com/cron-expression-input@1.2.7/lib/cron-expression-input.min.css"> 8 <script src="https://unpkg.com/cron-expression-input@1.2.7/lib/cron-expression-input.min.js"></script> 9</head> 10<body> 11 <!-- Component --> 12 <cron-expression-input color="d58512"></cron-expression-input> 13 <!-- Component --> 14 <script src="cron-expression-input.js"></script> 15</body> 16</html>
1import "cron-expression-input/lib/cron-expression-input.min.css"; /* CSS */ 2require("cron-expression-input"); /* JAVASCRIPT */ 3 4class App extends React.Component { 5 constructor(props) { 6 super(props); 7 this.state = { cron: "* * * * *" }; 8 } 9 10 render() { 11 return ( 12 <div> 13 <cron-expression-input 14 value={this.state.cron} 15 onInput={(e) => this.setState({ cron: e.nativeEvent.detail.value })} 16 color="d58512" /> 17 </div> 18 ); 19 } 20} 21 22export default App;
1<template> 2 <div id="app"> 3 <cron-expression-input 4 :value="cron" 5 v-on:input="cron = $event.detail.value" 6 color="d58512" /> 7 </div> 8</template> 9 10<script> 11import "cron-expression-input/lib/cron-expression-input.min.css"; /* CSS */ 12require("cron-expression-input"); /* JAVASCRIPT */ 13 14export default { 15 name: 'App', 16 data() { 17 return { 18 cron: "* * * * *" 19 } 20 } 21} 22</script>
You can pass various attributes to the component to modify its behavior, Example with color attribute:
Name | Type | Default | Description |
---|---|---|---|
width | {String} | 100% | The width of the component input |
height | {String} | 34px | The height of the component input |
color | {String} | #d58512 | The main color that the component elements will take, (Only in hexadecimal) |
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool detected but not run on all commits
Details
Reason
Found 2/3 approved changesets -- score normalized to 6
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
36 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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