ccstate 4.1.0 → 4.2.0
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 +2 -2
- package/core/index.cjs +576 -789
- package/core/index.cjs.map +1 -1
- package/core/index.d.cts +6 -3
- package/core/index.d.ts +6 -3
- package/core/index.js +576 -789
- package/core/index.js.map +1 -1
- package/debug/index.cjs +581 -795
- package/debug/index.cjs.map +1 -1
- package/debug/index.d.cts +6 -3
- package/debug/index.d.ts +6 -3
- package/debug/index.js +581 -795
- package/debug/index.js.map +1 -1
- package/index.cjs +589 -800
- package/index.cjs.map +1 -1
- package/index.d.cts +6 -3
- package/index.d.ts +6 -3
- package/index.js +589 -800
- package/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,9 +15,9 @@ The name of CCState comes from three basic types: `Computed`, `Command`, and `St
|
|
|
15
15
|
|
|
16
16
|
## Quick Features
|
|
17
17
|
|
|
18
|
+
- ✈️ Intuitive async computation: using async/await or try/catch to process async flow as regular JavaScript without any additional concept
|
|
18
19
|
- 💯 Simple & Intuitive: Crystal-clear API design with just three types and two operations
|
|
19
20
|
- ✅ Rock-solid Reliability: Comprehensive test coverage reaching 100% branch coverage
|
|
20
|
-
- ✈️ Intuitive async computation: using async/await or try/catch to process async flow as regular JavaScript without any additional concept
|
|
21
21
|
- 💡 Framework Agnostic: Seamlessly works with [React](docs/react.md), [Vue](docs/vue.md), [Solid.js](docs/solid.md), [Vanilla](docs/vanilla.md), or any UI framework
|
|
22
22
|
|
|
23
23
|
## Getting Started
|
|
@@ -87,7 +87,7 @@ export default function App() {
|
|
|
87
87
|
}
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
-
That's it! [Click here to see the full example](https://
|
|
90
|
+
That's it! [Click here to see the full example](https://stackblitz.com/edit/vitejs-vite-rert8c7a?file=src%2FApp.tsx).
|
|
91
91
|
|
|
92
92
|
Through these examples, you should have understood the basic usage of CCState. Next, you can read to learn about CCState's core APIs.
|
|
93
93
|
|