express-project-builder 1.0.0 → 1.0.3

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 +49 -0
  2. package/package.json +29 -25
package/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # Express Project Builder
2
+
3
+ <!-- [![npm version](https://badge.fury.io/js/express-project-builder.svg)](https://badge.fury.io/js/express-project-builder)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![Node.js Version](https://img.shields.io/badge/node-%3E%3D14.0.0-brightgreen.svg)](https://nodejs.org/) -->
6
+
7
+ A powerful and professional [Express.js project generator CLI](https://www.npmjs.com/package/express-project-builder) that instantly scaffolds a production-ready backend with [TypeScript](https://www.typescriptlang.org), [Modular Architecture](#Folder-Structure), and built-in support for [MongoDB (Mongoose)](https://mongoosejs.com/) or [PostgreSQL (Prisma)](https://www.prisma.io/). 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
+ - [Quick Start](#Quick-Start)
12
+ - [Key Elements](#Key-Elements)
13
+ - [Folder Structure](#Folder-Structure)
14
+
15
+ # [Quick Start](#Quick-Start)
16
+
17
+ **You don't need to install this package globally. Use it directly with [npx](https://www.npmjs.com/package/npx) Wrapper :**
18
+
19
+ ```bash
20
+ npx create-express-new-project my-test-project
21
+ ```
22
+
23
+ **You can also install it globally if you want to use it more frequently:**
24
+
25
+ ```bash
26
+ npm i -g express-project-builder
27
+ ```
28
+
29
+ ```bash
30
+ npx express-project-builder my-test-project
31
+ ```
32
+
33
+ ## [Key Elements](#Key-Elements)
34
+
35
+ - ### Node.js & Express.js
36
+ - ### JavaScript & TypeScript
37
+ - ### Mongoose & MongoDB
38
+ - ### Prisma & PostgreSQL
39
+ - ### Rate Limiting & Memory Caching (Node Cache)
40
+ - ### CORS & Cookie Parser
41
+ - ### Error Handling & Response Formatting
42
+ - ### Moduler Architecture & Folder Structure
43
+ - ### Security & Authentication (JWT)
44
+ - ### Middlewares & Common Utilities
45
+ - ### File Handling (Multer) & Zod Validation
46
+ - ### Query Builder & Email Sending (Nodemailer)
47
+ - ### Project Building & Formatting (Prettier & ESLint)
48
+
49
+ ## [Folder Structure](#Folder-Structure)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "express-project-builder",
3
- "version": "1.0.0",
4
- "description": "A professional and fast Express.js project generator CLI that creates a ready-to-use backend template with modular architecture, MongoDB (Mongoose) or PostgreSQL (Prisma) support, built-in authentication, error handling, rate limiting, file upload, caching, and utility functions. Start building APIs instantly by just providing your database URL.",
3
+ "version": "1.0.3",
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 generator",
20
- "express project builder",
19
+ "create express new project",
20
+ "express",
21
+ "express generator",
22
+ "express cli",
21
23
  "express boilerplate",
22
- "express starter template",
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
- "node project generator",
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
- "professional express boilerplate",
42
- "express authentication generator",
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
  }