express-project-builder 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 +26 -0
- package/package.json +29 -25
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Express Project Builder
|
|
2
|
+
|
|
3
|
+
<!-- [](https://badge.fury.io/js/express-project-builder)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://nodejs.org/) -->
|
|
6
|
+
|
|
7
|
+
A powerful and professional Express.js project generator CLI that instantly scaffolds a production-ready backend with TypeScript, modular architecture, and built-in support for MongoDB (Mongoose) or PostgreSQL (Prisma). Includes authentication, error handling, rate limiting, file upload, caching, and utility functions—so you can focus on building features instead of boilerplate. Perfect for kickstarting your next Express.js API project with best practices and modern tools.
|
|
8
|
+
|
|
9
|
+
## Table of contents
|
|
10
|
+
|
|
11
|
+
- [Installation](#Installation)
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
You don't need to install this package globally. Use it directly with npx Wrapper :
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx create-express-new-project my-test-project
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
You can also install it globally if you want to use it more frequently:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm i -g express-project-builder
|
|
25
|
+
npx express-project-builder my-test-project
|
|
26
|
+
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "express-project-builder",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "A powerful and professional Express.js project generator CLI that instantly scaffolds a production-ready backend with TypeScript, modular architecture, and built-in support for MongoDB (Mongoose) or PostgreSQL (Prisma). Includes authentication, error handling, rate limiting, file upload, caching, and utility functions—so you can focus on building features instead of boilerplate. Perfect for kickstarting your next Express.js API project with best practices and modern tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/bin/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -16,35 +16,39 @@
|
|
|
16
16
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
17
17
|
},
|
|
18
18
|
"keywords": [
|
|
19
|
-
"express project
|
|
20
|
-
"express
|
|
19
|
+
"create express new project",
|
|
20
|
+
"express",
|
|
21
|
+
"express generator",
|
|
22
|
+
"express cli",
|
|
21
23
|
"express boilerplate",
|
|
22
|
-
"express starter
|
|
24
|
+
"express starter",
|
|
25
|
+
"express project builder",
|
|
23
26
|
"express backend generator",
|
|
24
|
-
"express project cli",
|
|
25
|
-
"express typescript generator",
|
|
26
|
-
"express js template",
|
|
27
|
-
"express app starter",
|
|
28
|
-
"express project setup tool",
|
|
29
|
-
"express backend template",
|
|
30
|
-
"express mongodb prisma",
|
|
31
|
-
"express with mongoose",
|
|
32
|
-
"express with prisma",
|
|
33
|
-
"express auth boilerplate",
|
|
34
27
|
"express api generator",
|
|
35
|
-
"
|
|
28
|
+
"express server setup",
|
|
29
|
+
"express typescript",
|
|
30
|
+
"express mongodb",
|
|
31
|
+
"express prisma",
|
|
32
|
+
"express modular",
|
|
33
|
+
"express project setup",
|
|
34
|
+
"express project creator",
|
|
35
|
+
"express app generator",
|
|
36
|
+
"express mongoose generator",
|
|
37
|
+
"express prisma generator",
|
|
38
|
+
"express modular structure",
|
|
39
|
+
"express project cli",
|
|
40
|
+
"node generator",
|
|
36
41
|
"node backend boilerplate",
|
|
42
|
+
"node project cli",
|
|
37
43
|
"node express starter",
|
|
44
|
+
"node backend generator",
|
|
45
|
+
"node js server setup",
|
|
38
46
|
"backend api builder",
|
|
47
|
+
"typescript backend generator",
|
|
39
48
|
"typescript express starter",
|
|
40
49
|
"typescript express project",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"express modular structure",
|
|
44
|
-
"express error handling template",
|
|
45
|
-
"express rate limiting",
|
|
46
|
-
"express file upload setup",
|
|
47
|
-
"express project cli generator"
|
|
50
|
+
"production ready express",
|
|
51
|
+
"dev.MozzammelRidoy"
|
|
48
52
|
],
|
|
49
53
|
"author": "Mozzammel Ridoy",
|
|
50
54
|
"license": "MIT",
|
|
@@ -78,10 +82,10 @@
|
|
|
78
82
|
},
|
|
79
83
|
"repository": {
|
|
80
84
|
"type": "git",
|
|
81
|
-
"url": "https://github.com/MozzammelRidoy"
|
|
85
|
+
"url": "https://github.com/MozzammelRidoy/express-project-builder"
|
|
82
86
|
},
|
|
83
87
|
"bugs": {
|
|
84
|
-
"url": "https://github.com/MozzammelRidoy"
|
|
88
|
+
"url": "https://github.com/MozzammelRidoy/express-project-builder/issues"
|
|
85
89
|
},
|
|
86
90
|
"homepage": "https://github.com/MozzammelRidoy"
|
|
87
91
|
}
|