create-weave 0.2.53 → 0.2.162
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 +22 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# create-weave
|
|
2
|
+
|
|
3
|
+
Scaffold a new Weave app in one command.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm create weave@latest my-app
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Also works with pnpm and yarn:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pnpm create weave my-app
|
|
13
|
+
yarn create weave my-app
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
It sets up a ready-to-run **[Weave](https://weaveframework.dev/)** project — the framework core plus routing, state, forms, i18n, and data (each zero-dependency and tree-shaken when unused) — with the CLI scripts wired up.
|
|
17
|
+
|
|
18
|
+
📚 **Guides + full API reference:** [weaveframework.dev](https://weaveframework.dev/)
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
MIT
|