Skip to content

Commit 442cc1c

Browse files
Merge pull request #1 from lilBunnyRabbit/dev
v0.0.0
2 parents 57a198a + c1d65b9 commit 442cc1c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+4196
-1246
lines changed

.github/workflows/release.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
name: Release
22

33
on:
4-
# Disabled for template
5-
# push:
6-
# branches:
7-
# - master
4+
push:
5+
branches:
6+
- master
87

98
workflow_dispatch:
109

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules/
22
dist/
3+
.vscode/

README.md

+78-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,89 @@
1-
# NPM Package Template
1+
# [TypeScript](https://www.typescriptlang.org/) Task Management System
22

3-
[![npm version](https://img.shields.io/npm/v/@lilbunnyrabbit/<package-name>.svg)](https://www.npmjs.com/package/@lilbunnyrabbit/<package-name>)
4-
[![npm downloads](https://img.shields.io/npm/dt/@lilbunnyrabbit/<package-name>.svg)](https://www.npmjs.com/package/@lilbunnyrabbit/<package-name>)
3+
[![npm version](https://img.shields.io/npm/v/@lilbunnyrabbit/task-manager.svg)](https://www.npmjs.com/package/@lilbunnyrabbit/task-manager)
4+
[![npm downloads](https://img.shields.io/npm/dt/@lilbunnyrabbit/task-manager.svg)](https://www.npmjs.com/package/@lilbunnyrabbit/task-manager)
55

6-
This repository serves as a template for creating npm packages, simplifying the setup and development process for your npm packages. Replace all the `<package-name>` and `<repo-name>` with the name of the repository and/or package.
6+
A flexible and powerful task management system built with [TypeScript](https://www.typescriptlang.org/). It helps in managing both synchronous and asynchronous tasks with ease, allowing you to queue tasks, execute them sequentially or in parallel, and monitor their progress.
7+
8+
> [!NOTE]
9+
> This project uses `EventEmitter` and `Optional` from [![npm version](https://img.shields.io/npm/v/%40lilbunnyrabbit%2Futils?label=%40lilbunnyrabbit%2Futils)](https://www.npmjs.com/package/@lilbunnyrabbit/utils) for handling events and optional values.
710
811
## Installation
912

1013
To use this package in your project, run:
1114

1215
```sh
13-
npm i @lilbunnyrabbit/<package-name>
16+
npm i @lilbunnyrabbit/task-manager
17+
```
18+
19+
## Getting Started
20+
21+
This system revolves around two main components: [`TaskManager`](#taskmanager) and [`Task`](#task).
22+
23+
- **[`TaskManager`](#taskmanager)**: Manages task execution, queuing, and progress tracking. It can run tasks sequentially or in parallel, giving full control over execution.
24+
- **[`Task`](#task)**: Represents a single unit of work. Each task encapsulates its own logic, data, and execution state, with custom error handling and progress reporting.
25+
26+
### Creating a Task
27+
28+
You can create a task using the `createTask` function:
29+
30+
```ts
31+
import { createTask } from "@lilbunnyrabbit/task-manager";
32+
33+
const myTask = createTask<void, string>({
34+
name: "Example Task",
35+
36+
async execute() {
37+
return "Task Completed!";
38+
},
39+
});
40+
```
41+
42+
### Managing Tasks with TaskManager
43+
44+
[`Tasks`](#task) are managed using the [`TaskManager`](#taskmanager), which allows you to add tasks, track progress, and handle task completion:
45+
46+
```ts
47+
import { TaskManager } from "@lilbunnyrabbit/task-manager";
48+
49+
const manager = new TaskManager();
50+
51+
manager.addTasks([myTask()]);
52+
manager.start();
1453
```
1554

55+
## Examples
56+
57+
You can find more examples of how to use this task management system in the [`examples`](./examples) folder. Some key examples include:
58+
59+
- **[Basic Task Execution](./examples/basic-example)**: Learn how to create and execute a simple task.
60+
- **[Sequential Task Execution](./examples/sequential-example)**: Execute tasks one after the other.
61+
- **[Parallel Task Execution](./examples/parallel-example)**: Run tasks concurrently with parallel execution.
62+
63+
## API Overview
64+
65+
This is a quick rundown of the key classes and methods in the task management system.
66+
67+
If you're looking for detailed API docs, check out the [full documentation](https://lilbunnyrabbit.github.io/task-manager/docs/api) generated via [Typedoc](https://typedoc.org/).
68+
69+
### TaskManager
70+
71+
The `TaskManager` is responsible for managing tasks and controlling their execution.
72+
73+
- `addTasks(tasks: Task[])`: Adds tasks to the queue.
74+
- `start([force: boolean])`: Starts executing the tasks in the queue.
75+
- `stop()`: Stops execution of tasks.
76+
- `reset()`: Resets the task manager and its state.
77+
- `clearQueue()`: Clears the task queue.
78+
79+
### Task
80+
81+
A `Task` represents a single unit of work within the system.
82+
83+
- `execute()`: Executes the task.
84+
- `parse()`: Returns a UI-friendly representation of the task's state.
85+
- `clone()`: Clones the task for re-execution.
86+
1687
## Development
1788

1889
This section provides a guide for developers to set up the project environment and utilize various npm scripts defined in the project for efficient development and release processes.
@@ -22,8 +93,8 @@ This section provides a guide for developers to set up the project environment a
2293
Clone the repository and install dependencies:
2394

2495
```sh
25-
git clone https://github.com/lilBunnyRabbit/<repo-name>.git
26-
cd <repo-name>
96+
git clone https://github.com/lilBunnyRabbit/task-manager.git
97+
cd task-manager
2798
npm install
2899
```
29100

docs/api/.nojekyll

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

docs/api/assets/highlight.css

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
:root {
2+
--light-hl-0: #795E26;
3+
--dark-hl-0: #DCDCAA;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-hl-2: #A31515;
7+
--dark-hl-2: #CE9178;
8+
--light-hl-3: #AF00DB;
9+
--dark-hl-3: #C586C0;
10+
--light-hl-4: #001080;
11+
--dark-hl-4: #9CDCFE;
12+
--light-hl-5: #0000FF;
13+
--dark-hl-5: #569CD6;
14+
--light-hl-6: #0070C1;
15+
--dark-hl-6: #4FC1FF;
16+
--light-hl-7: #267F99;
17+
--dark-hl-7: #4EC9B0;
18+
--light-hl-8: #098658;
19+
--dark-hl-8: #B5CEA8;
20+
--light-hl-9: #008000;
21+
--dark-hl-9: #6A9955;
22+
--light-hl-10: #000000FF;
23+
--dark-hl-10: #D4D4D4;
24+
--light-code-background: #FFFFFF;
25+
--dark-code-background: #1E1E1E;
26+
}
27+
28+
@media (prefers-color-scheme: light) { :root {
29+
--hl-0: var(--light-hl-0);
30+
--hl-1: var(--light-hl-1);
31+
--hl-2: var(--light-hl-2);
32+
--hl-3: var(--light-hl-3);
33+
--hl-4: var(--light-hl-4);
34+
--hl-5: var(--light-hl-5);
35+
--hl-6: var(--light-hl-6);
36+
--hl-7: var(--light-hl-7);
37+
--hl-8: var(--light-hl-8);
38+
--hl-9: var(--light-hl-9);
39+
--hl-10: var(--light-hl-10);
40+
--code-background: var(--light-code-background);
41+
} }
42+
43+
@media (prefers-color-scheme: dark) { :root {
44+
--hl-0: var(--dark-hl-0);
45+
--hl-1: var(--dark-hl-1);
46+
--hl-2: var(--dark-hl-2);
47+
--hl-3: var(--dark-hl-3);
48+
--hl-4: var(--dark-hl-4);
49+
--hl-5: var(--dark-hl-5);
50+
--hl-6: var(--dark-hl-6);
51+
--hl-7: var(--dark-hl-7);
52+
--hl-8: var(--dark-hl-8);
53+
--hl-9: var(--dark-hl-9);
54+
--hl-10: var(--dark-hl-10);
55+
--code-background: var(--dark-code-background);
56+
} }
57+
58+
:root[data-theme='light'] {
59+
--hl-0: var(--light-hl-0);
60+
--hl-1: var(--light-hl-1);
61+
--hl-2: var(--light-hl-2);
62+
--hl-3: var(--light-hl-3);
63+
--hl-4: var(--light-hl-4);
64+
--hl-5: var(--light-hl-5);
65+
--hl-6: var(--light-hl-6);
66+
--hl-7: var(--light-hl-7);
67+
--hl-8: var(--light-hl-8);
68+
--hl-9: var(--light-hl-9);
69+
--hl-10: var(--light-hl-10);
70+
--code-background: var(--light-code-background);
71+
}
72+
73+
:root[data-theme='dark'] {
74+
--hl-0: var(--dark-hl-0);
75+
--hl-1: var(--dark-hl-1);
76+
--hl-2: var(--dark-hl-2);
77+
--hl-3: var(--dark-hl-3);
78+
--hl-4: var(--dark-hl-4);
79+
--hl-5: var(--dark-hl-5);
80+
--hl-6: var(--dark-hl-6);
81+
--hl-7: var(--dark-hl-7);
82+
--hl-8: var(--dark-hl-8);
83+
--hl-9: var(--dark-hl-9);
84+
--hl-10: var(--dark-hl-10);
85+
--code-background: var(--dark-code-background);
86+
}
87+
88+
.hl-0 { color: var(--hl-0); }
89+
.hl-1 { color: var(--hl-1); }
90+
.hl-2 { color: var(--hl-2); }
91+
.hl-3 { color: var(--hl-3); }
92+
.hl-4 { color: var(--hl-4); }
93+
.hl-5 { color: var(--hl-5); }
94+
.hl-6 { color: var(--hl-6); }
95+
.hl-7 { color: var(--hl-7); }
96+
.hl-8 { color: var(--hl-8); }
97+
.hl-9 { color: var(--hl-9); }
98+
.hl-10 { color: var(--hl-10); }
99+
pre, code { background: var(--code-background); }

0 commit comments

Comments
 (0)