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 +5 -0
- package/README.md +24 -0
- package/package.json +1 -1
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
|
+
[](https://www.npmjs.com/package/nodejs-quickstart-structure)
|
|
4
|
+
[](https://www.npmjs.com/package/nodejs-quickstart-structure)
|
|
5
|
+
[](https://www.npmjs.com/package/nodejs-quickstart-structure)
|
|
6
|
+
[](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
|
[](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!
|