|
1 | 1 | # mutableJS / Core
|
2 | 2 |
|
3 |
| -Mutable state, with reactive functions - automatic result recalculations on state changes |
4 |
| - |
5 | 3 | [](https://www.npmjs.com/package/@mutablejs/core)  [](https://github.com/mutableJS/core/blob/master/LICENSE)
|
6 | 4 |  [](https://github.com/mutableJS/core/issues)
|
7 | 5 |
|
8 | 6 | [](https://discord.gg/gNdgy8uS3R)
|
9 | 7 |
|
10 |
| -## FAQ |
11 |
| - |
12 |
| -#### Why was mutableJS created? |
13 |
| - |
14 |
| -Inspired by the other big front-end frameworks and libraries, like [React](https://reactjs.org/), [Vue.JS](https://vuejs.org/) and friends, research |
15 |
| -on variables mutability has started and developed into the current reactive execution mechanism. |
16 |
| - |
17 |
| -#### Is it ready to use? |
18 |
| - |
19 |
| -The package is still pretty experimental, but is already used in some small usable web-apps.\ |
20 |
| -`@mutablejs/core` is primarily used with the [@mutablejs/dom](https://www.npmjs.com/package/@mutablejs/dom) package, see the [Starter Repository](https://github.com/mutableJS/template-starter-typescript). |
21 |
| - |
22 |
| -#### Accompanying packages? |
23 |
| - |
24 |
| -Currently there is 1 more package: [@mutablejs/dom](https://www.npmjs.com/package/@mutablejs/dom) and 2 more repos: [mutableJS / TypeScript Starter Template](https://github.com/mutableJS/template-starter-typescript), [mutableJS / Demo Repo](https://github.com/mutableJS/demo). |
| 8 | +Mutable state, with reactive functions - automatic result recalculations on state changes. |
25 | 9 |
|
26 | 10 | ## Installation
|
27 | 11 |
|
@@ -113,6 +97,22 @@ someMutableObject.value.a = 'Data'; // Console should print `Value changed to: {
|
113 | 97 | delete someMutableObject.value.a; // Console should print `Value changed to: { b: 'Changed' }`
|
114 | 98 | ```
|
115 | 99 |
|
| 100 | +## FAQ |
| 101 | + |
| 102 | +#### Why was mutableJS created? |
| 103 | + |
| 104 | +Inspired by the other big front-end frameworks and libraries, like [React](https://reactjs.org/), [Vue.JS](https://vuejs.org/) and friends, research |
| 105 | +on variables mutability has started and developed into the current reactive execution mechanism. |
| 106 | + |
| 107 | +#### Is it ready to use? |
| 108 | + |
| 109 | +The package is still pretty experimental, but is already used in some small usable web-apps.\ |
| 110 | +`@mutablejs/core` is primarily used with the [@mutablejs/dom](https://www.npmjs.com/package/@mutablejs/dom) package, see the [Starter Repository](https://github.com/mutableJS/template-starter-typescript). |
| 111 | + |
| 112 | +#### Accompanying packages? |
| 113 | + |
| 114 | +Currently there is 1 more package: [@mutablejs/dom](https://www.npmjs.com/package/@mutablejs/dom) and 2 more repos: [mutableJS / TypeScript Starter Template](https://github.com/mutableJS/template-starter-typescript), [mutableJS / Demo Repo](https://github.com/mutableJS/demo). |
| 115 | + |
116 | 116 | ## Authors
|
117 | 117 |
|
118 | 118 | - [@donnikitos](https://www.github.com/donnikitos)
|
|
0 commit comments