Giter Club home page Giter Club logo

natural-cron.js's Introduction

natural-cron.js

Pure JS library for converting natural English phrases into Cron expressions.

demo.gif

Usage

Browser

<!-- link dist/natural-cron.min.js -->
<script src="pathToLibrary/natural-cron.min.js"></script>

<!-- call getCronString() from JS code whenever required-->
<script>
    btn.onclick = function(){
        let str = inputBox.value;
        res.value = getCronString(str);
    };
</script>

NodeJS

  • Install package with...

      npm install @darkeyedevelopers/natural-cron.js
    
  • Import with require() & call getCronString() whenever required...

      var getCronString = require('@darkeyedevelopers/natural-cron.js');
    
      var cron = getCronString('every day at 2:55pm');
    

Flexible outputs

Output result pattern can be specified while calling getCronString() function.

Parameter Type Default value Description
Input string       String    Required. English phrase that has to be
converted to corresponding Cron expression
Output pattern       String    'MIN HOR DOM MON WEK YER' Optional. Specifies the output pattern in
which cron expression should be generated.

MIN => Minutes
HOR => Hours
DOM => Day of Month
MON => Month(s)
WEK => Weekday(s)
YER => Year

Combine one or more of the above to form
result pattern. Checkout the examples
below to understand better.

Examples

  • getCronString('every 3rd day at 2:55 am from January to August');
    => 55 2 3 JAN-AUG ? *
  • getCronString('every 3rd day at 2:55 am from January to August', 'DOM MON YER');
    => 3 JAN-AUG *
  • getCronString('every 3rd day at 2:55 am from January to August', 'DOM YER MON HOR');
    => 3 * JAN-AUG 2
  • getCronString('every 3rd day at 2:55 am from January to August', '{DOM) some text MON :)');
    => {3) some text JAN-AUG :)

Implemented using Push Down Automata

design.png


Do you want to contribute ? Checkout CONTRIBUTING.md

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.