create-sanifyfe 0.1.0 → 0.1.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 +23 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# create-sanifyfe
|
|
2
|
+
|
|
3
|
+
Scaffolder project [Sanify Frontend](https://www.npmjs.com/package/@sanify/core).
|
|
4
|
+
|
|
5
|
+
## Pakai
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
bun create sanifyfe my-app
|
|
9
|
+
# atau
|
|
10
|
+
npm create sanifyfe my-app
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Tanpa argumen nama, CLI akan menanyakannya secara interaktif.
|
|
14
|
+
|
|
15
|
+
## Hasil
|
|
16
|
+
|
|
17
|
+
Project siap jalan berisi contoh todo (signal, router, persist + cross-tab sync) dengan dev server Bun:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
cd my-app
|
|
21
|
+
bun install
|
|
22
|
+
bun dev
|
|
23
|
+
```
|