Skip to content
/ ease Public

A minimal task runner with scheduling capabilities

Notifications You must be signed in to change notification settings

chisel/ease

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ease Task Runner

Ease is a minimal task runner with scheduling capabilities designed to be flexible and easy to work with.

Installation

npm install @chisel/ease -g

Quick Start

  1. Create the following file in project root:
    easeconfig.js:
module.exports = ease => {
  ease.task('task1', () => {
    // Perform task
  });
  ease.job('job1', ['task1']);
};
  1. Run job1 through the CLI command: ease job1
  2. Read the official documentation to learn how to schedule jobs, install/create plugins, and all the other benefits Ease has to offer.

About

A minimal task runner with scheduling capabilities

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published