flexium 0.15.0 → 0.15.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/README.md CHANGED
@@ -25,6 +25,8 @@ npm install flexium
25
25
 
26
26
  ## Quick Start
27
27
 
28
+ ### Client-side App
29
+
28
30
  ```bash
29
31
  npm create flexium@latest my-app
30
32
  cd my-app
@@ -32,6 +34,15 @@ npm install
32
34
  npm run dev
33
35
  ```
34
36
 
37
+ ### Fullstack App (with Realtime/SSE)
38
+
39
+ ```bash
40
+ npm create flexism@latest my-app
41
+ cd my-app
42
+ npm install
43
+ npm run dev
44
+ ```
45
+
35
46
  ## The Only API You Need: `use()`
36
47
 
37
48
  Flexium unifies all state concepts into one function.
@@ -235,6 +246,16 @@ function Child() {
235
246
  }
236
247
  ```
237
248
 
249
+ ## Ecosystem
250
+
251
+ | Package | Description |
252
+ |---------|-------------|
253
+ | [flexism](https://www.npmjs.com/package/flexism) | Realtime-first fullstack framework with SSE streaming |
254
+ | [flexium-ui](https://www.npmjs.com/package/flexium-ui) | Column/Row based UI component library |
255
+ | [flexium-canvas](https://www.npmjs.com/package/flexium-canvas) | Canvas, WebGL, and interactive modules |
256
+ | [create-flexium](https://www.npmjs.com/package/create-flexium) | Scaffold a client-side Flexium app |
257
+ | [create-flexism](https://www.npmjs.com/package/create-flexism) | Scaffold a fullstack Flexism app |
258
+
238
259
  ## Documentation
239
260
 
240
261
  Full documentation available at [https://flexium.junhyuk.im](https://flexium.junhyuk.im)
package/dist/index.d.cts CHANGED
@@ -1,3 +1,3 @@
1
- declare const VERSION = "0.15.0";
1
+ declare const VERSION = "0.15.1";
2
2
 
3
3
  export { VERSION };
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- declare const VERSION = "0.15.0";
1
+ declare const VERSION = "0.15.1";
2
2
 
3
3
  export { VERSION };
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- 'use strict';var o="0.15.0";exports.VERSION=o;//# sourceMappingURL=index.js.map
1
+ 'use strict';var o="0.15.1";exports.VERSION=o;//# sourceMappingURL=index.js.map
2
2
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":["VERSION"],"mappings":"aAAO,IAAMA,CAAAA,CAAU","file":"index.js","sourcesContent":["export const VERSION = '0.15.0' // Bump version to signify rebuild\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":["VERSION"],"mappings":"aAAO,IAAMA,CAAAA,CAAU","file":"index.js","sourcesContent":["export const VERSION = '0.15.1' // Bump version to signify rebuild\n"]}
package/dist/index.mjs CHANGED
@@ -1,2 +1,2 @@
1
- var o="0.15.0";export{o as VERSION};//# sourceMappingURL=index.mjs.map
1
+ var o="0.15.1";export{o as VERSION};//# sourceMappingURL=index.mjs.map
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":["VERSION"],"mappings":"AAAO,IAAMA,CAAAA,CAAU","file":"index.mjs","sourcesContent":["export const VERSION = '0.15.0' // Bump version to signify rebuild\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":["VERSION"],"mappings":"AAAO,IAAMA,CAAAA,CAAU","file":"index.mjs","sourcesContent":["export const VERSION = '0.15.1' // Bump version to signify rebuild\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flexium",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "description": "A lightweight, signals-based UI framework with cross-platform renderers",
5
5
  "publishConfig": {
6
6
  "access": "public"