express-todo 1.2.1 → 1.2.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 +123 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,123 @@
1
+ # express-todo
2
+
3
+ Simple Express boilerplate generator for quickly starting Express applications.
4
+
5
+ ---
6
+
7
+ # Installation
8
+
9
+ ## Using NPX (Recommended)
10
+
11
+ ```bash
12
+ npx express-todo simple
13
+ ```
14
+
15
+ ---
16
+
17
+ # What It Does
18
+
19
+ The command:
20
+
21
+ ```bash
22
+ npx express-todo simple
23
+ ```
24
+
25
+ automatically creates a ready-to-use Express project with basic structure and starter configuration.
26
+
27
+ ---
28
+
29
+ # Generated Structure
30
+
31
+ ```txt
32
+ project-name/
33
+
34
+ ├── .vscode/
35
+ ├── Config/
36
+ ├── Public/
37
+ ├── .env
38
+ ├── .env.local
39
+ ├── app.js
40
+ ├── config.json
41
+ ├── configLoader.js
42
+ ├── package.json
43
+ ├── package-lock.json
44
+ ├── port.js
45
+ ├── routes.js
46
+ └── server.js
47
+ ```
48
+
49
+ ---
50
+
51
+ # Example
52
+
53
+ ## Command
54
+
55
+ ```bash
56
+ npx express-todo simple
57
+ ```
58
+
59
+ ## Output
60
+
61
+ ```txt
62
+ [keshavsoft] Project created: your-project-name
63
+ ```
64
+
65
+ ---
66
+
67
+ # Quick Start
68
+
69
+ ## Step 1
70
+
71
+ Create project:
72
+
73
+ ```bash
74
+ npx express-todo simple
75
+ ```
76
+
77
+ ## Step 2
78
+
79
+ Move into project folder:
80
+
81
+ ```bash
82
+ cd your-project-name
83
+ ```
84
+
85
+ ## Step 3
86
+
87
+ Install dependencies:
88
+
89
+ ```bash
90
+ npm install
91
+ ```
92
+
93
+ ## Step 4
94
+
95
+ Start server:
96
+
97
+ ```bash
98
+ npm start
99
+ ```
100
+
101
+ ---
102
+
103
+ # Why express-todo?
104
+
105
+ - Fast Express setup
106
+ - Clean starter structure
107
+ - Beginner friendly
108
+ - Reduces repetitive boilerplate work
109
+ - Simple command line usage
110
+
111
+ ---
112
+
113
+ # Command Reference
114
+
115
+ ```bash
116
+ npx express-todo simple
117
+ ```
118
+
119
+ ---
120
+
121
+ # License
122
+
123
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "express-todo",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "CLI to scaffold projects using templates",
5
5
  "keywords": [
6
6
  "cli",