@fkws/klonk 0.0.7 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -3
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
|
|
2
5
|

|
|
3
6
|

|
|
4
7
|
[](https://codecov.io/gh/klar-web-services/klonk)
|
|
@@ -6,13 +9,14 @@
|
|
|
6
9
|
|
|
7
10
|

|
|
8
11
|
|
|
9
|
-
---
|
|
10
|
-
|
|
11
12
|
*A code-first, type-safe automation engine for TypeScript.*
|
|
12
13
|
|
|
13
14
|
## Introduction
|
|
14
15
|
Klonk is a code-first, type-safe automation engine designed with developer experience as a top priority. It provides powerful, composable primitives to build complex workflows and state machines with world-class autocomplete and type inference. If you've ever wanted to build event-driven automations or a stateful agent, but in code, with all the benefits of TypeScript, Klonk is for you.
|
|
15
16
|
|
|
17
|
+

|
|
18
|
+

|
|
19
|
+
|
|
16
20
|
The two main features are **Workflows** and **Machines**.
|
|
17
21
|
|
|
18
22
|
- **Workflows**: Combine triggers with a series of tasks (a `Playlist`) to automate processes. Perfect for event-driven automation, like "when a file is added to Dropbox, parse it, and create an entry in Notion."
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkws/klonk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "A lightweight, extensible workflow automation engine for Node.js and Bun",
|
|
5
|
+
"repository": "https://github.com/klar-web-services/klonk",
|
|
5
6
|
"module": "dist/index.js",
|
|
6
7
|
"main": "dist/index.js",
|
|
7
8
|
"types": "dist/index.d.ts",
|