Skip to content

jwchang0206/timeplan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Timeplan

####simplest way to assign delayed tasks and repetitive tasks


Installation

  npm install timeplan

or

  git clone git://github.com/InspiredJW/timeplan.git

Usage

Delayed Task
timeplan.delayed({
  period: "m"
  task: function() {
    console.log("Every Minutes");
  }
});
Repetitive Task
timeplan.repeat({
  period: "3s"
  task: function() {
    console.log("Every 3 Seconds");
  }
});

Periods

  • year : Y, year, years

  • month : M, month, months

  • week : W, week, weeks

  • day : D, day, days

  • hour : h, hour, hours

  • minute : m, minute, minutes

  • second : s, second, seconds

About

simplest way to assign delayed tasks and repetitive tasks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published