🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@dealmeddevs/react-cron-generator

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dealmeddevs/react-cron-generator

Simple react component to generate cron expression (Material UI)

2.0.5
latest
Source
npm
Version published
Weekly downloads
18
-21.74%
Maintainers
1
Weekly downloads
 
Created
Source

react-cron-generator

Simple react component to generate cron expression (Material-UI)

Getting Started

Package helps to build linux scheduler cron expression. This project uses material-ui

data = '* * * * * * *'
npm i --save @dealmeddevs/react-cron-generator

demo

Live demo

alt text

alt text

import React, { useState } from 'react'
import Cron from 'react-cron-generator'

const App = (props) => {
    const [value, setValue] = useState()

    return (
      <div>
        <Cron
          onChange={(e)=> {setValue(e)); console.log(e)}}
          value={value}
          showResultText={true}
          showResultCron={true}
        />                      
      </div>
    )
 
}

export default App

props

PropDescriptionDefault
valuecron expression
onChange
showResultTextshow in readable text formatfalse
showResultCronshow cron expressionfalse

Keywords

React cron generator

FAQs

Package last updated on 01 Nov 2019

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