https://github.com/chisel/ease
A minimal task runner with scheduling capabilities
https://github.com/chisel/ease
scheduler task-manager
Last synced: 6 months ago
JSON representation
A minimal task runner with scheduling capabilities
- Host: GitHub
- URL: https://github.com/chisel/ease
- Owner: chisel
- Created: 2019-06-18T02:25:52.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-23T03:58:34.000Z (almost 4 years ago)
- Last Synced: 2025-08-03T11:35:37.552Z (8 months ago)
- Topics: scheduler, task-manager
- Language: TypeScript
- Homepage:
- Size: 210 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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:**
```js
module.exports = ease => {
ease.task('task1', () => {
// Perform task
});
ease.job('job1', ['task1']);
};
```
2. Run `job1` through the CLI command: `ease job1`
3. Read the [official documentation](https://ease.js.org) to learn how to schedule jobs, install/create plugins, and all the other benefits Ease has to offer.