ngx-cron-jobs
Advanced tools
Weekly downloads
Readme
This repository contains an Angular > 2 version of angular-cron-jobs.
To install the latest version (14.2.4) of ngx-cron-jobs
$ npm install ngx-cron-jobs --save
or
$ yarn add ngx-cron-jobs
Here are the following current enhancements
Other enhancements are very, very welcome as well!
To install this library for Angular <=5, run:
$ npm install ngx-cron-jobs@0.x.x --save
$ yarn add ngx-cron-jobs@0.x.x
where x.x is 4.9. Is should look like this 0.4.9. Line for Angular 5 will have major set to 0.
To install this library for Angular 6, run:
$ npm install ngx-cron-jobs@6.x.x --save
$ yarn add ngx-cron-jobs@6.x.x
where x.x is 4.10. Is should look like this 6.4.10. Line for Angular 6 will have major set to 6.
To install this library for Angular 7, run:
$ npm install ngx-cron-jobs@7.x.x --save
$ yarn add ngx-cron-jobs@7.x.x
where x.x is 4.10. Is should look like this 7.4.10 Line for Angular 6 will have major set to 6.
and then from your Angular AppModule
:
import { CronJobsModule } from 'ngx-cron-jobs';
@NgModule({
imports: [
...,
CronJobsModule,
...
]
})
export class AppModule { }
Once your library is imported, you can use its components, directives and pipes in your Angular application:
<!-- To insert to in your component minimal config with ngModel -->
<cron-jobs [(ngModel)]="hero.frequency"></cron-jobs>
<!-- To insert to in your component minimal config with reactive forms -->
<cron-jobs [formControl]="freqControl"></cron-jobs>
<!-- To insert to in your component minimal config with reactive forms -->
<!-- additional parameters -->
<cron-jobs [formControl]="freqControl" [config]="cronConfig" [validate]="cronValidate"></cron-jobs>
The component takes an input of [config]
and [validate]
Plugin maybe configured by config object to which should be pass in [config]
input.
List of options:
Option | Type | Description |
---|---|---|
quartz | boolean (false) | Use quartz syntax rather then cron syntax in control output |
multiple | boolean (false) | Enable multi select in plugin selects |
bootstrap | boolean (true) | Use bootstrap 4 html and css classes to build plugin forms |
option | object | Additional options |
option.minute | boolean (true) | remove (false) or add minute to plugin select to control user ability to set cron expression. |
option.hour | boolean (true) | remove (false) or add hour to plugin select to control user ability to set cron expression. |
option.day | boolean (true) | remove (false) or add day to plugin select to control user ability to set cron expression. |
option.week | boolean (true) | remove (false) or add week to plugin select to control user ability to set cron expression. |
option.month | boolean (true) | remove (false) or add month to plugin select to control user ability to set cron expression. |
option.year | boolean (true) | remove (false) or add year to plugin select to control user ability to set cron expression. |
Additional to this plugin supports validation config ([validate]
input):
Option | Type | Description |
---|---|---|
validate | boolean (false) | Add validation classes if controls are invalid. |
MIT © Daniel 'yp2' Derezinski
From angular 1 project
From angular2-cron-jobs project
From ngx-cron-jobs project
FAQs
This repository contains an Angular > 2 version of [angular-cron-jobs](http://angular-cron-jobs.github.io/angular-cron-jobs).
The npm package ngx-cron-jobs receives a total of 648 weekly downloads. As such, ngx-cron-jobs popularity was classified as not popular.
We found that ngx-cron-jobs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.