create-fullstack-setup 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +17 -7
  2. package/package.json +7 -1
package/README.md CHANGED
@@ -1,8 +1,18 @@
1
- # 🚀 create-fullstack-app
1
+ # 🚀 create-fullstack-setup
2
2
 
3
- > A modern CLI tool to generate production-ready backend or full-stack applications initial setup with Express in seconds.
3
+ > A modern CLI tool to generate production-ready backend or full-stack applications with Express in seconds.
4
4
 
5
- **create-fullstack-app** 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.
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
+
7
+ ---
8
+
9
+ ## 🚀 Quick Start (Recommended)
10
+
11
+ The fastest way to use the CLI is with **npx** (no global install required):
12
+
13
+ ```bash
14
+ npx create-fullstack-setup my-app
15
+ ```
6
16
 
7
17
  ---
8
18
 
@@ -30,13 +40,13 @@
30
40
  Install the CLI globally via npm:
31
41
 
32
42
  ```bash
33
- npm install -g create-fullstack-app
43
+ npm install -g create-fullstack-setup
34
44
  ```
35
45
 
36
46
  Verify the installation:
37
47
 
38
48
  ```bash
39
- create-fullstack-app --version
49
+ create-fullstack-setup --version
40
50
  ```
41
51
 
42
52
  ---
@@ -46,13 +56,13 @@ create-fullstack-app --version
46
56
  ### Create a new project
47
57
 
48
58
  ```bash
49
- create-fullstack-app my-app
59
+ create-fullstack-setup my-app
50
60
  ```
51
61
 
52
62
  ### Create in the current directory
53
63
 
54
64
  ```bash
55
- create-fullstack-app .
65
+ create-fullstack-setup .
56
66
  ```
57
67
 
58
68
  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.0",
3
+ "version": "1.0.2",
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",