@confect/react 1.0.0-next.4 → 1.0.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/CHANGELOG.md +13 -0
- package/README.md +11 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Confect 🧁
|
|
2
|
+
|
|
3
|
+
Confect is a framework that deeply integrates Effect with Convex. It's more than just Effect bindings! Confect allows you to:
|
|
4
|
+
|
|
5
|
+
- Define your Convex database schema using Effect schemas.
|
|
6
|
+
- Write Convex function args and returns validators using Effect's schema library.
|
|
7
|
+
- Use Confect functions to automatically decode and encode your data according to your Effect schema definitions for end-to-end rich types, from client to function to database (and back).
|
|
8
|
+
- Use Effect's HTTP API modules to define your HTTP API(s). Includes interactive OpenAPI documentation powered by [Scalar](https://github.com/scalar/scalar).
|
|
9
|
+
- Access Convex platform capabilities via Effect services.
|
|
10
|
+
|
|
11
|
+
Want to learn more? Read the [docs](https://confect.dev)!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@confect/react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Client-side bindings for React apps",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"convex": "^1.30.0",
|
|
49
49
|
"effect": "^3.19.16",
|
|
50
50
|
"react": "^18.0.0 || ^19.0.0",
|
|
51
|
-
"@confect/core": "1.0.
|
|
51
|
+
"@confect/core": "1.0.1"
|
|
52
52
|
},
|
|
53
53
|
"engines": {
|
|
54
54
|
"node": ">=22",
|