express-project-builder 1.0.2 → 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 +28 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,23 +4,46 @@
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
  [![Node.js Version](https://img.shields.io/badge/node-%3E%3D14.0.0-brightgreen.svg)](https://nodejs.org/) -->
6
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.
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
8
 
9
9
  ## Table of contents
10
10
 
11
- - [Installation](#Installation)
11
+ - [Quick Start](#Quick-Start)
12
+ - [Key Elements](#Key-Elements)
13
+ - [Folder Structure](#Folder-Structure)
12
14
 
13
- ## Installation
15
+ # [Quick Start](#Quick-Start)
14
16
 
15
- You don't need to install this package globally. Use it directly with npx Wrapper :
17
+ **You don't need to install this package globally. Use it directly with [npx](https://www.npmjs.com/package/npx) Wrapper :**
16
18
 
17
19
  ```bash
18
20
  npx create-express-new-project my-test-project
19
21
  ```
20
22
 
21
- You can also install it globally if you want to use it more frequently:
23
+ **You can also install it globally if you want to use it more frequently:**
22
24
 
23
25
  ```bash
24
26
  npm i -g express-project-builder
27
+ ```
28
+
29
+ ```bash
25
30
  npx express-project-builder my-test-project
26
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,6 +1,6 @@
1
1
  {
2
2
  "name": "express-project-builder",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
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",