mol_wire_lib 1.0.19 → 1.0.20

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.
Files changed (2) hide show
  1. package/README.md +17 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,42 +18,42 @@ Auto wiring modules. It gives ability to:
18
18
 
19
19
  ### Decorators
20
20
 
21
- - [$mol_wire_mem](./mem) - reactive memoizing property decorator
22
- - [$mol_wire_field](./field) - reactive memoizing field decorator
23
- - [$mol_wire_method](./method) - method decorator which run inside fiber
21
+ - [$mol_wire_mem](https://github.com/hyoo-ru/mam_mol/tree/master/wire/mem) - reactive memoizing property decorator
22
+ - [$mol_wire_field](https://github.com/hyoo-ru/mam_mol/tree/master/wire/field) - reactive memoizing field decorator
23
+ - [$mol_wire_method](https://github.com/hyoo-ru/mam_mol/tree/master/wire/method) - method decorator which run inside fiber
24
24
 
25
25
  ### Proxies
26
26
 
27
- - [$mol_wire_sync](./sync) - converts async API to sync
28
- - [$mol_wire_async](./async) - converts sync API to async
27
+ - [$mol_wire_sync](https://github.com/hyoo-ru/mam_mol/tree/master/wire/sync) - converts async API to sync
28
+ - [$mol_wire_async](https://github.com/hyoo-ru/mam_mol/tree/master/wire/async) - converts sync API to async
29
29
 
30
30
  ### Functions
31
31
 
32
- - [$mol_wire_probe](./probe) - run code without state changes
33
- - [$mol_wire_solid](./solid) - make current fiber immortal
32
+ - [$mol_wire_probe](https://github.com/hyoo-ru/mam_mol/tree/master/wire/probe) - run code without state changes
33
+ - [$mol_wire_solid](https://github.com/hyoo-ru/mam_mol/tree/master/wire/solid) - make current fiber immortal
34
34
 
35
35
  ## Structures
36
36
 
37
- - [$mol_wire_set](./set) - reactive Set
38
- - [$mol_wire_dom](./dom) - reactive DOM
37
+ - [$mol_wire_set](https://github.com/hyoo-ru/mam_mol/tree/master/wire/set) - reactive Set
38
+ - [$mol_wire_dom](https://github.com/hyoo-ru/mam_mol/tree/master/wire/dom) - reactive DOM
39
39
 
40
40
  ## Low level API
41
41
 
42
42
  ### Pub/Sub
43
43
 
44
- - [$mol_wire_pub](./pub) - tiny publisher
45
- - [$mol_wire_sub](./sub) - generic subscriber interface
46
- - [$mol_wire_pub_sub](./pub/sub) - subscriber with retranslation support
44
+ - [$mol_wire_pub](https://github.com/hyoo-ru/mam_mol/tree/master/wire/pub) - tiny publisher
45
+ - [$mol_wire_sub](https://github.com/hyoo-ru/mam_mol/tree/master/wire/sub) - generic subscriber interface
46
+ - [$mol_wire_pub_sub](https://github.com/hyoo-ru/mam_mol/tree/master/wire/pub/sub) - subscriber with retranslation support
47
47
  - `$mol_wire_auto` - current tracking subscriber
48
48
 
49
49
  ### Reactivity
50
50
 
51
- - [$mol_wire_fiber](./fiber) - pausable task with sync API
52
- - [$mol_wire_cursor](./cursor) - subscription statuses
51
+ - [$mol_wire_fiber](https://github.com/hyoo-ru/mam_mol/tree/master/wire/fiber) - pausable task with sync API
52
+ - [$mol_wire_cursor](https://github.com/hyoo-ru/mam_mol/tree/master/wire/cursor) - subscription statuses
53
53
 
54
54
  ## NPM Bundles
55
55
 
56
- ### [mol_wire_lib](./lib)
56
+ ### [mol_wire_lib](https://github.com/hyoo-ru/mam_mol/tree/master/wire/lib)
57
57
 
58
58
  Lib with all production ready $mol_wire modules.
59
59
 
@@ -93,7 +93,7 @@ mem(1)( User.prototype, 'finger_exists' )
93
93
  action( User.prototype, 'finger_cut' )
94
94
  ```
95
95
 
96
- ### [mol_wire_pub](./pub)
96
+ ### [mol_wire_pub](https://github.com/hyoo-ru/mam_mol/tree/master/wire/pub)
97
97
 
98
98
  Tiny lib to making any state observabe for other $mol_wire based libs.
99
99
 
@@ -125,7 +125,7 @@ export function decrease() {
125
125
  }
126
126
  ```
127
127
 
128
- ### [mol_wire_dom](./dom)
128
+ ### [mol_wire_dom](https://github.com/hyoo-ru/mam_mol/tree/master/wire/dom)
129
129
 
130
130
  Lib to make real DOM reactive.
131
131
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_wire_lib",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "main": "node.js",
5
5
  "module": "node.esm.js",
6
6
  "browser": "web.js",