create-foldkit-app 0.12.3 → 0.12.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 +15 -14
- package/dist/examples.js +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,20 +18,21 @@ The CLI prompts you for a project name, starter example, and package manager. Pa
|
|
|
18
18
|
|
|
19
19
|
## Examples
|
|
20
20
|
|
|
21
|
-
| Example | Description
|
|
22
|
-
| ---------------- |
|
|
23
|
-
| `counter` | Simple increment/decrement with reset
|
|
24
|
-
| `
|
|
25
|
-
| `
|
|
26
|
-
| `
|
|
27
|
-
| `
|
|
28
|
-
| `
|
|
29
|
-
| `
|
|
30
|
-
| `
|
|
31
|
-
| `
|
|
32
|
-
| `
|
|
33
|
-
| `
|
|
34
|
-
| `
|
|
21
|
+
| Example | Description |
|
|
22
|
+
| ---------------- | ----------------------------------------------------------------------------------- |
|
|
23
|
+
| `counter` | Simple increment/decrement with reset |
|
|
24
|
+
| `counters` | A dynamic list of Counter Submodels with per-instance routing via a wrapper Message |
|
|
25
|
+
| `stopwatch` | Timer with start/stop/reset |
|
|
26
|
+
| `weather` | HTTP requests with async state handling |
|
|
27
|
+
| `todo` | CRUD operations with localStorage persistence |
|
|
28
|
+
| `form` | Form validation with async email checking |
|
|
29
|
+
| `snake` | Classic game built with Subscriptions |
|
|
30
|
+
| `routing` | URL routing with parser combinators and route parameters |
|
|
31
|
+
| `query-sync` | URL-driven filtering, sorting, and search |
|
|
32
|
+
| `shopping-cart` | Complex state management with nested Models |
|
|
33
|
+
| `websocket-chat` | Managed resources with WebSocket |
|
|
34
|
+
| `auth` | Authentication with Submodels, OutMessage, and protected routes |
|
|
35
|
+
| `ui-showcase` | Every Foldkit UI component with routing |
|
|
35
36
|
|
|
36
37
|
## License
|
|
37
38
|
|
package/dist/examples.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export const EXAMPLE_VALUES = [
|
|
2
2
|
'counter',
|
|
3
|
+
'counters',
|
|
3
4
|
'todo',
|
|
4
5
|
'stopwatch',
|
|
5
6
|
'crash-view',
|
|
@@ -25,6 +26,11 @@ export const examples = [
|
|
|
25
26
|
title: 'counter',
|
|
26
27
|
description: 'Simple increment/decrement with reset',
|
|
27
28
|
},
|
|
29
|
+
{
|
|
30
|
+
value: 'counters',
|
|
31
|
+
title: 'counters',
|
|
32
|
+
description: 'A dynamic list of Counter Submodels with per-instance routing via a wrapper Message',
|
|
33
|
+
},
|
|
28
34
|
{
|
|
29
35
|
value: 'todo',
|
|
30
36
|
title: 'todo',
|