项目作者: lud77

项目描述 :
An interpreter for the Crontalk DSL, using moment.js and generators
高级语言: JavaScript
项目地址: git://github.com/lud77/cron-talk-moment.git
创建时间: 2017-04-09T10:07:06Z
项目社区:https://github.com/lud77/cron-talk-moment

开源协议:

下载


crontalk-moment v0.0.2

A generator-based interpreter for Crontalk.

Installation

  1. npm install --save crontalk-moment

Why?

Crontalk is a library and an NPM module implementing a DSL that allows you to express Cron-like (and more) repeated-events expressions in a human readable syntax.
However, Crontalk is only a parser and just translates natural language strings of text into a custom JSON format.

Crontalk-moment implements the next step, taking Crontalk’s JSON output as input and processing it to generate the timestamps of the repeating events.
As the name suggests, this implementation uses the Moment.js library to compute the timestamps.

Features / Usage

Generator-based interface

  1. const ctm = require('crontalk-moment');
  2. const gen = ctm('every 3 hours');
  3. console.log(gen.next());

Supported features

This module currently only supports the basic Cron features (regular increments in years, months, weeks, days, hours adn/or minutes) with optional start/stop dates.

Roadmap

  • extend to cover a bigger subset of Crontalk’s features (eventually all of them)
  • implement an event-emitter version to actually generate events at the correct times

Licensing

This package is released under the MIT License