nodejs-quickstart-structure 1.10.0 → 1.10.1

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/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.10.1] - 2026-03-02
9
+ ### Added
10
+ - Roadmap & Upcoming Features. **[View our Public Roadmap on Trello](https://trello.com/b/TPTo8ylF/nodejs-quickstart-structure-product)**
11
+ - Update start app with npx command.
12
+
8
13
  ## [1.10.0] - 2026-02-27
9
14
  ### Added
10
15
  - **GraphQL Support:** The generator now supports scaffolding GraphQL APIs using Apollo Server (v4) alongside standard REST APIs. This feature includes built-in integrations for both MVC and Clean Architecture designs across TypeScript and JavaScript.
package/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Node.js Quickstart Generator
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/nodejs-quickstart-structure.svg?style=flat-square)](https://www.npmjs.com/package/nodejs-quickstart-structure)
4
+ [![npm total downloads](https://img.shields.io/npm/dt/nodejs-quickstart-structure.svg?style=flat-square)](https://www.npmjs.com/package/nodejs-quickstart-structure)
5
+ [![npm monthly downloads](https://img.shields.io/npm/dm/nodejs-quickstart-structure.svg?style=flat-square)](https://www.npmjs.com/package/nodejs-quickstart-structure)
6
+ [![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg?style=flat-square)](https://opensource.org/licenses/ISC)
7
+
3
8
  A powerful CLI tool to scaffold production-ready Node.js microservices with built-in best practices, allowing you to choose between **MVC** or **Clean Architecture**, **JavaScript** or **TypeScript**, and your preferred database.
4
9
 
5
10
  [![Medium Article](https://img.shields.io/badge/Medium-Read%20Article-black?logo=medium)](https://medium.com/@paudang/nodejs-quickstart-generator-93c276d60e0b)
@@ -56,6 +61,15 @@ Once installed, simply run the following command in any directory where you want
56
61
  ```bash
57
62
  nodejs-quickstart init
58
63
  ```
64
+ or
65
+
66
+ ## Quick Start (Recommended)
67
+
68
+ You can run the generator directly without installing it globally:
69
+
70
+ ```bash
71
+ npx nodejs-quickstart-structure init
72
+ ```
59
73
 
60
74
  ### Configuration Options
61
75
 
@@ -94,3 +108,13 @@ docker-compose up
94
108
  ## License
95
109
 
96
110
  ISC
111
+
112
+ ## 🚀 Roadmap & Upcoming Features
113
+
114
+ We are constantly working to improve `nodejs-quickstart-structure` and make it the most robust boilerplate generator for Node.js.
115
+
116
+ You can track our current progress, see what features are being worked on, and vote for your favorites on our public Trello board:
117
+
118
+ 👉 **[View our Public Roadmap on Trello](https://trello.com/b/TPTo8ylF/nodejs-quickstart-structure-product)**
119
+
120
+ If you have a feature request or want to contribute, feel free to check the board and open an issue or pull request!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodejs-quickstart-structure",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "type": "module",
5
5
  "description": "A CLI to scaffold Node.js microservices with MVC or Clean Architecture",
6
6
  "main": "bin/index.js",