Get Started

This is an open source project that builds a cron builder component for Angular applications.
It supports Quartz and Unix cron string formats for both input and output.
Inspired by this non-angular implementation.

Installation

You can use either the npm or yarn command-line tool to install packages.
npm install --save @sbzen/ng-cron

Display the cron component

You need to import the QuartzCronModule that you want to display by adding the following lines to your ngModule.

import { Bs5QuartzCronModule } from '@sbzen/ng-cron';
// or import { Bs5QuartzCronModule } from '@sbzen/ng-cron';

@NgModule({
  imports: [Bs5QuartzCronModule]
})

Add the cron component into your template.

<bs5-quartz-cron></bs5-quartz-cron>
<!-- or <bs5-unix-cron></bs5-unix-cron> -->

UI widget

As a result you will have this widget