vivth 1.2.0 → 1.2.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vivth",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "library primitives",
5
5
  "main": "index.mjs",
6
6
  "types": "./types/index.d.mts",
@@ -1,35 +0,0 @@
1
- ## HOW TO INSTALL
2
-
3
- - example uses `npm`, you can allways use your own favourite package manager;
4
-
5
- ```shell
6
- npm i vivth
7
- ```
8
-
9
- ## vivth
10
-
11
- - `vivth` are intended to be a collections of usefull `primitives`, and not to be directly used as
12
- underlying framework;
13
- - completely `JSruntime` agnostic:
14
- > - instead of `vivth` trying to guess, all runtime specific API should be provided by dev;
15
- - contains helpers to help you write data driven javascript program, including:
16
- > - collections of extremely ⚡ performant `signal` classes;
17
- > > - `vivth` deliberately take away `auto-subscription`:
18
- > > > - and introducing more imperative way of subsrciption yet still simple enough, which in
19
- > > > turn, it completely removes total code blocking on previously needed auto subsrciption
20
- > > > process on first run;
21
- > > > - and also make previously unthinkable dynamic subscription on conditionals that runs
22
- > > > outside first run, now completely possible;
23
- > - collections of `queue-helper` classes;
24
- > - fully typed `worker-threads` abstraction;
25
- > - ` error as value` function helper;
26
- > - opionated `autoDocumentation`;
27
- > - opionated `bundler`;
28
-
29
- ## versions:
30
-
31
- - `1.0.0+:b`:
32
- > - beta release;
33
- > - checking edge cases;
34
- > - stable API, the exposed API access are highly unlikely to changes, only the underlying code
35
- > might changes for improving performance;