flamefront 0.1.2 → 0.1.3
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 +11 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,8 +48,17 @@ and chooses how it renders.
|
|
|
48
48
|
|
|
49
49
|
## Quickstart
|
|
50
50
|
|
|
51
|
-
|
|
52
|
-
|
|
51
|
+
Create and start an app with Node.js 26 or newer:
|
|
52
|
+
|
|
53
|
+
```sh
|
|
54
|
+
pnpm create flamefront@latest my-app
|
|
55
|
+
cd my-app
|
|
56
|
+
pnpm dev
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
See [Create a one-page app](./docs/create-app.md) for the generated files and
|
|
60
|
+
how the server-rendered route works. To evaluate Flamefront without creating a
|
|
61
|
+
project, [try the included app](./docs/getting-started.md).
|
|
53
62
|
|
|
54
63
|
## Before you try it
|
|
55
64
|
|