repeat-task

1.2.0 • Public • Published

repeat-task

a simple tool to run the repeat tasks;

Explain

a simple tool to run the repeat tasks;

Usage

const Task = require('repeat-task');

const t = new Task();

// add tasks
t.addTask('TaskName1', task1, taskIntervalTime1, {
    timing: true
});
t.addTask('TaskName2', task2, taskIntervalTime2, {
    timing: true
});

// run
t.run();

// listen log
t.on('log', function(log) {
    console.log(log);
});

//listen error
t.on('error', function(err) {
    console.error(err);
});

Readme

Keywords

none

Package Sidebar

Install

npm i repeat-task

Weekly Downloads

1

Version

1.2.0

License

ISC

Unpacked Size

12.7 kB

Total Files

7

Last publish

Collaborators

  • mapleincode