tiink
v1.2.0
Published
Tiink is NodeJS Job Schedule!
Downloads
6
Maintainers
Readme
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:
| Methods | Description | Ready | | ------------- |:------------------------------------------------|:-----:| | 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:
| Option | Description | | -------- |:------------------------------------------| | minute | Represents minute in numbers | | hour | Represents hour in numbers | | weekday | Represents weekday in numbers |