create-alabjs 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 +19 -0
- package/package.json +11 -2
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# create-alabjs
|
|
2
|
+
|
|
3
|
+
> Scaffold a new AlabJS app in seconds.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npx create-alabjs@latest my-app
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
## Templates
|
|
10
|
+
|
|
11
|
+
| Template | Command | Best for |
|
|
12
|
+
|---|---|---|
|
|
13
|
+
| `basic` | `create-alabjs my-app` | Starting from scratch |
|
|
14
|
+
| `blog` | `create-alabjs my-app --template blog` | Content-heavy sites with SSR |
|
|
15
|
+
| `dashboard` | `create-alabjs my-app --template dashboard` | Admin UIs with server functions |
|
|
16
|
+
|
|
17
|
+
## License
|
|
18
|
+
|
|
19
|
+
MIT © [ThinkGrid Labs](https://github.com/thinkgrid-labs)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-alabjs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Scaffold a new AlabJS app",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -23,5 +23,14 @@
|
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
25
|
"url": "https://github.com/thinkgrid-labs/alabjs.git"
|
|
26
|
-
}
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"alabjs",
|
|
29
|
+
"react",
|
|
30
|
+
"framework",
|
|
31
|
+
"create",
|
|
32
|
+
"scaffold",
|
|
33
|
+
"starter"
|
|
34
|
+
],
|
|
35
|
+
"author": "Dennis Paler <dennis@thinkgrid.dev>"
|
|
27
36
|
}
|