express-launcher 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.
- package/README.md +21 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Express Launcher
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A Simple CLI tool to create Express.js applications with modern best practices, TypeScript support, and various integrations.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
@@ -11,24 +11,30 @@ Use this detailed CLI tool to scaffold your Express.js applications with modern
|
|
|
11
11
|
- **Linting:** ESLint configuration (Flat Config, TypeScript support)
|
|
12
12
|
- **Structure:** MVC pattern or Modular structure (routes, controllers, utils, middlewares)
|
|
13
13
|
|
|
14
|
-
##
|
|
14
|
+
## Quick Start
|
|
15
|
+
|
|
16
|
+
You can use `npx` to run the generator directly without installation:
|
|
15
17
|
|
|
16
18
|
```bash
|
|
17
|
-
|
|
19
|
+
npx express-launcher [project-name]
|
|
18
20
|
```
|
|
19
21
|
|
|
20
|
-
##
|
|
22
|
+
## Installation (Optional)
|
|
21
23
|
|
|
22
|
-
|
|
24
|
+
If you prefer to install it globally:
|
|
23
25
|
|
|
24
26
|
```bash
|
|
25
|
-
express-launcher
|
|
27
|
+
npm install -g express-launcher
|
|
26
28
|
```
|
|
27
29
|
|
|
28
|
-
|
|
30
|
+
## Usage
|
|
29
31
|
|
|
30
32
|
```bash
|
|
31
|
-
|
|
33
|
+
# Generated a new project named 'my-app'
|
|
34
|
+
npx express-launcher my-app
|
|
35
|
+
|
|
36
|
+
# Run interactively
|
|
37
|
+
npx express-launcher
|
|
32
38
|
```
|
|
33
39
|
|
|
34
40
|
Follow the prompts to configure your project.
|
|
@@ -50,6 +56,13 @@ my-app/
|
|
|
50
56
|
└── README.md
|
|
51
57
|
```
|
|
52
58
|
|
|
59
|
+
## Author
|
|
60
|
+
|
|
61
|
+
**Narasimha Vaddala**
|
|
62
|
+
|
|
63
|
+
- GitHub: [@NarasimhaVaddala](https://github.com/NarasimhaVaddala)
|
|
64
|
+
- LinkedIn: [Narasimha Vaddala](https://www.linkedin.com/in/narasimha-vaddala)
|
|
65
|
+
|
|
53
66
|
## License
|
|
54
67
|
|
|
55
68
|
MIT © Narasimha
|