@getforma/core 1.0.3 → 1.0.4
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 +20 -10
- package/package.json +22 -3
package/README.md
CHANGED
|
@@ -812,18 +812,28 @@ See the [`examples/`](./examples) directory:
|
|
|
812
812
|
|
|
813
813
|
---
|
|
814
814
|
|
|
815
|
-
##
|
|
815
|
+
## Part of the Forma Stack
|
|
816
816
|
|
|
817
|
-
|
|
817
|
+
### Frontend (TypeScript)
|
|
818
818
|
|
|
819
|
-
| Package |
|
|
820
|
-
|
|
821
|
-
| [@getforma/core](https://www.npmjs.com/package/@getforma/core) |
|
|
822
|
-
| [@getforma/compiler](https://
|
|
823
|
-
| [@getforma/build](https://
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
819
|
+
| Package | Description |
|
|
820
|
+
|---|---|
|
|
821
|
+
| [@getforma/core](https://www.npmjs.com/package/@getforma/core) | **This library** — reactive DOM, signals, islands, SSR hydration |
|
|
822
|
+
| [@getforma/compiler](https://www.npmjs.com/package/@getforma/compiler) | Vite plugin — h() optimization, server function transforms, FMIR emission |
|
|
823
|
+
| [@getforma/build](https://www.npmjs.com/package/@getforma/build) | Production pipeline — esbuild bundling, content hashing, compression, manifest |
|
|
824
|
+
|
|
825
|
+
### Backend (Rust)
|
|
826
|
+
|
|
827
|
+
| Package | Description |
|
|
828
|
+
|---|---|
|
|
829
|
+
| [forma-ir](https://crates.io/crates/forma-ir) | FMIR binary format — parser, walker, WASM exports |
|
|
830
|
+
| [forma-server](https://crates.io/crates/forma-server) | Axum middleware — SSR page rendering, asset serving, CSP headers |
|
|
831
|
+
|
|
832
|
+
### Full Framework
|
|
833
|
+
|
|
834
|
+
| Package | Description |
|
|
835
|
+
|---|---|
|
|
836
|
+
| [@getforma/create-app](https://github.com/getforma-dev/create-forma-app) | `npx @getforma/create-app` — scaffolds a Rust server + TypeScript frontend project |
|
|
827
837
|
|
|
828
838
|
---
|
|
829
839
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getforma/core",
|
|
3
3
|
"author": "Forma <victor@getforma.dev>",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"description": "Real DOM reactive library — fine-grained signals, islands architecture, SSR hydration. No virtual DOM, no diffing. ~15KB gzipped.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.cjs",
|
|
@@ -138,12 +138,31 @@
|
|
|
138
138
|
"fine-grained",
|
|
139
139
|
"real-dom",
|
|
140
140
|
"no-vdom",
|
|
141
|
+
"no-virtual-dom",
|
|
141
142
|
"tc39-signals",
|
|
142
|
-
"
|
|
143
|
+
"alien-signals",
|
|
143
144
|
"lightweight",
|
|
144
145
|
"typescript",
|
|
146
|
+
"jsx",
|
|
145
147
|
"hyperscript",
|
|
146
|
-
"state-management"
|
|
148
|
+
"state-management",
|
|
149
|
+
"islands",
|
|
150
|
+
"islands-architecture",
|
|
151
|
+
"hydration",
|
|
152
|
+
"ssr",
|
|
153
|
+
"server-side-rendering",
|
|
154
|
+
"csp",
|
|
155
|
+
"csp-safe",
|
|
156
|
+
"content-security-policy",
|
|
157
|
+
"declarative",
|
|
158
|
+
"data-attributes",
|
|
159
|
+
"alpine-alternative",
|
|
160
|
+
"solidjs-alternative",
|
|
161
|
+
"rust-ssr",
|
|
162
|
+
"web-components",
|
|
163
|
+
"progressive-enhancement",
|
|
164
|
+
"zero-build",
|
|
165
|
+
"cdn"
|
|
147
166
|
],
|
|
148
167
|
"license": "MIT",
|
|
149
168
|
"repository": {
|