Skip to content

Commit

Permalink
docs: update github pages for bette documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tabkram committed Dec 10, 2023
1 parent e802aae commit c4b43ca
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ A TypeScript library for tracing and visualizing code execution workflows
- [ExecutionTimer](#executiontimer)
- [TraceableExecution](#traceableexecution)
- [ExecutionEngine](#executionengine)
- [EngineTask with @engine and @run Decorators](#enginetask-with-engine-and-run-decorators)

## Installation 📦

Expand Down Expand Up @@ -49,8 +50,9 @@ console.log('Trace:', trace);

You can:

- view the **complete code** in [examples/usage.ts](examples/usage.ts)
- inspect the **trace output** in [examples/usage.json](examples/usage.json).
- view the **complete code** in [usage.ts](https://github.com/tabkram/execution-engine/blob/main/examples/usage.ts)
- inspect the **trace output**
in [usage.json](https://github.com/tabkram/execution-engine/blob/main/examples/usage.json).
- visualize the **trace graph** using the json-to-graph online
tool. [→ See the result ←](https://tabkram.github.io/json-to-graph/?data=https://raw.githubusercontent.com/tabkram/execution-engine/main/examples/usage.json)

Expand Down Expand Up @@ -83,8 +85,9 @@ console.log("Trace:", trace);

You can:

- view the **complete code** in [examples/usage2.ts](examples/usage2.ts)
- inspect the **trace output** in [examples/usage2.json](examples/usage2.json)
- view the **complete code** in [usage2.ts](https://github.com/tabkram/execution-engine/blob/main/examples/usage2.ts)
- inspect the **trace output**
in [usage2.json](https://github.com/tabkram/execution-engine/blob/main/examples/usage2.json)
- visualize the **trace graph** using the json-to-graph online
tool. [→ See the result ←](https://tabkram.github.io/json-to-graph/?data=https://raw.githubusercontent.com/tabkram/execution-engine/main/examples/usage2.json)

Expand All @@ -104,7 +107,7 @@ The __[ExecutionEngine](./ExecutionEngine.md)__ enhances traceable execution by
capturing additional relevant information.
It builds upon the functionality of [TraceableExecution](./TraceableExecution.md).

### EngineTask Class and @engine/@run Decorators
### EngineTask with @engine and @run Decorators

The __[EngineTask](./EngineTask.md)__ class works in conjunction with the `@engine` decorator and the `@run` decorator
to integrate the ExecutionEngine into your classes, providing tracing capabilities for methods.
Expand Down

1 comment on commit c4b43ca

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.
Category Percentage Covered / Total
🟢 Statements 92.22% 237/257
🟢 Branches 86.57% 174/201
🟢 Functions 91.67% 66/72
🟢 Lines 92.95% 224/241

Test suite run success

32 tests passing in 5 suites.

Report generated by 🧪jest coverage report action from c4b43ca

Please sign in to comment.