create-fullstack-setup 1.0.0 → 1.0.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 +7 -7
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# 🚀 create-fullstack-
|
|
1
|
+
# 🚀 create-fullstack-setup
|
|
2
2
|
|
|
3
|
-
> A modern CLI tool to generate production-ready backend or full-stack applications
|
|
3
|
+
> A modern CLI tool to generate production-ready backend or full-stack applications with Express in seconds.
|
|
4
4
|
|
|
5
|
-
**create-fullstack-
|
|
5
|
+
**create-fullstack-setup** streamlines project setup by automating repetitive tasks like folder structure creation, dependency installation, middleware configuration, and environment setup—so you can focus on building features, not boilerplate.
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
Install the CLI globally via npm:
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npm install -g create-fullstack-
|
|
33
|
+
npm install -g create-fullstack-setup
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
Verify the installation:
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
create-fullstack-
|
|
39
|
+
create-fullstack-setup --version
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
---
|
|
@@ -46,13 +46,13 @@ create-fullstack-app --version
|
|
|
46
46
|
### Create a new project
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
create-fullstack-
|
|
49
|
+
create-fullstack-setup my-app
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
### Create in the current directory
|
|
53
53
|
|
|
54
54
|
```bash
|
|
55
|
-
create-fullstack-
|
|
55
|
+
create-fullstack-setup .
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
The CLI will guide you through an interactive setup process.
|
package/package.json
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-fullstack-setup",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "CLI to generate ready-to-run fullstack or backend applications",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create-fullstack-setup": "./bin/index.js"
|
|
7
7
|
},
|
|
8
8
|
"type": "module",
|
|
9
|
+
"files": [
|
|
10
|
+
"bin",
|
|
11
|
+
"utils",
|
|
12
|
+
"templates",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
9
15
|
"keywords": [
|
|
10
16
|
"cli",
|
|
11
17
|
"express",
|