Skip to content

Commit 864b933

Browse files
committed
updated version
1 parent 57965b1 commit 864b933

File tree

2 files changed

+21
-18
lines changed

2 files changed

+21
-18
lines changed

README.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,11 @@
11
# mutableJS / Core
22

3-
Mutable state, with reactive functions - automatic result recalculations on state changes
4-
53
[![npm](https://img.shields.io/npm/dt/@mutablejs/core?style=for-the-badge)](https://www.npmjs.com/package/@mutablejs/core) ![GitHub Repo stars](https://img.shields.io/github/stars/mutablejs/core?label=GitHub%20Stars&style=for-the-badge) [![GitHub](https://img.shields.io/github/license/mutablejs/core?color=blue&style=for-the-badge)](https://github.com/mutableJS/core/blob/master/LICENSE)
64
![GitHub last commit](https://img.shields.io/github/last-commit/mutablejs/core?style=for-the-badge) [![Issues](https://img.shields.io/github/issues/mutableJS/core?style=for-the-badge)](https://github.com/mutableJS/core/issues)
75

86
[![Support Server](https://img.shields.io/discord/978049671110987856.svg?label=Discord&logo=Discord&colorB=7289da&style=for-the-badge)](https://discord.gg/gNdgy8uS3R)
97

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.
259

2610
## Installation
2711

@@ -113,6 +97,22 @@ someMutableObject.value.a = 'Data'; // Console should print `Value changed to: {
11397
delete someMutableObject.value.a; // Console should print `Value changed to: { b: 'Changed' }`
11498
```
11599

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+
116116
## Authors
117117

118118
- [@donnikitos](https://www.github.com/donnikitos)

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
"name": "@mutablejs/core",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Mutable state, with reactive functions - automatic recalculations on state changes",
55
"keywords": [
66
"mutable state",
77
"reactive functions",
88
"variables",
9+
"signals",
10+
"global state",
11+
"app state",
912
"reactivity",
1013
"javascript",
1114
"typescript",

0 commit comments

Comments
 (0)