nodejs-quickstart-structure 1.9.0 → 1.9.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,7 +5,7 @@ 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.9.0] - 2026-02-22
8
+ ## [1.9.1] - 2026-02-22
9
9
  ### Added
10
10
  - Implemented **Daily Template Vulnerability Audit** via GitHub Actions (`.github/workflows/daily-audit.yml`). A custom script now parses `package.json.ejs` daily to proactively scan for high-severity vulnerabilities in generated dependencies, ensuring generated projects are eternally secure.
11
11
  - Added built-in **Memory Cache** (`node-cache`) integration as an alternative caching layer alongside Redis.
package/README.md CHANGED
@@ -6,11 +6,6 @@ A powerful CLI tool to scaffold production-ready Node.js microservices with buil
6
6
 
7
7
  ![Demo](docs/demo.gif)
8
8
 
9
- #### Security & Maintenance
10
- When generating microservices, you inherit dependencies configured within `templates/common/package.json.ejs`. Since standard repository vulnerability scanners cannot natively parse EJS conditional tags, this generator implements a custom **Daily Template Vulnerability Audit** via GitHub Actions.
11
-
12
- Every night, an extraction script compiles all possible template dependencies across all combinations (MongoDB, Kafka, Redis, Memory Cache, MySQL, PostgreSQL, etc) into a single map and performs a comprehensive `npm audit --audit-level=high`. If a severe vulnerability is ever identified in a third-party package utilized by the templates, the repository maintainers are instantly alerted to patch it, ensuring zero-day security gaps are mitigated instantly.
13
-
14
9
  ## Features
15
10
 
16
11
  - **Interactive CLI**: Easy-to-use prompts to configure your project.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodejs-quickstart-structure",
3
- "version": "1.9.0",
3
+ "version": "1.9.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",