1.2.0 • Published 3 years ago

tiink v1.2.0

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

Tiink

Tiink is a simple Job Schedule for NodeJS.

Installation:

npm install tiink --save

Usage:

Import the module into your project

const Tiink = require('tiink');
// OR
import { Tiink } from 'tiink';

Create a new TeaTime

const manager = new Tiink();
const options = {
  hour: 3,
  weekday: []
};

manager.addJob('<JOB_NAME>', options, async () => {
  /*...YOUR LOGIC GOES HERE ...*/
});

Specifications:

Methods:

MethodsDescriptionReady
addJob()Creates a job in the manager
stopJob()Only stops a job in the manager
deleteJob()Deletes a job from the manager
restartJob()Restarts job in the manager

Options:

OptionDescription
minuteRepresents minute in numbers
hourRepresents hour in numbers
weekdayRepresents weekday in numbers
1.2.0

3 years ago

1.1.12

3 years ago

1.1.14

3 years ago

1.1.13

3 years ago

1.1.11

4 years ago

1.1.10

4 years ago

1.1.9

4 years ago

1.1.8

4 years ago

1.1.7

4 years ago

1.1.6

4 years ago

1.1.5

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago