Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-cron-generator

Package Overview
Dependencies
Maintainers
0
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-cron-generator

Simple react component to generate cron expression

  • 2.0.13
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

react-cron-generator

Simple react component to generate cron expression

Getting Started

Package helps to build linux scheduler cron expression.

npm version Downloads license E2E tests passing.

data = '* * * * * * *'
npm install react-cron-generator

demo

Live demo

alt text

alt text

import React, { useState } from 'react'
import Cron from 'react-cron-generator'
import 'react-cron-generator/dist/cron-builder.css'


const App = () => {
  const [state, setState] = useState<State>({});

  return (
    <Cron
      onChange={(e, text) => {
        setState({ value: e });
      }}
      value={state.value}
      showResultText={true}
      showResultCron={true}
    />
  );
};

export default App;

props

PropDescriptionDefaultMandatory
valuecron expressionNo
onChangehave 2 arguments, 1st is cron value and 2nd is cron result text from cronstrueYes
showResultTextshow in readable text formatfalseNo
showResultCronshow cron expressionfalseNo
translateFntranslate function callbackmethodNo
localelocale for cronstrueenNo
optionsOptions for Cron component, *Must pass a valid cron value for available headersAll available headersNo
disabledDisable cron selectorfalseNo

translateFn

Expects a method. Use this prop for localization support. react-cron-generator will call this method for every key. List of keys are available here

locale option should be set for correct ResultText translation. Please visit cronstrue for supported locales.

Options

options.headers

import { HEADER } from 'react-cron-generator';

const options = {
  headers: [HEADER.MONTHLY, HEADER.WEEKLY, HEADER.MINUTES, HEADER.HOURLY, HEADER.DAILY, HEADER.CUSTOM]
};

Release notes 2.x.x

  1. Build Procedure updated
  2. Updated to latest react(18)
  3. Migrated to hooks and typescript

Sojin Antony

"Buy Me A Coffee"

Acknowledgments

cronstrue

Viswanath Lekshmanan

Keywords

FAQs

Package last updated on 31 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc