express-zod-safe 1.0.1 → 1.0.5

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 +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,6 +10,8 @@
10
10
 
11
11
  Express Zod Safe is a strict, typesafe middleware designed for Node.js applications, leveraging the robustness of Zod schemas to validate incoming request bodies, parameters, and queries. This package seamlessly integrates with Express.js (or similar frameworks) to provide developers with a typesafe, declarative approach to ensure data integrity and prevent invalid or malicious data from affecting their applications.
12
12
 
13
+ __This package was inspired by Aquila169's [zod-express-middleware](https://github.com/Aquila169/zod-express-middleware) package, and is intended to be a more robust and typesafe alternative.__
14
+
13
15
  ## 🔒 Features
14
16
 
15
17
  - **Typesafe**: Built with TypeScript, offering complete typesafe interfaces that enrich your development experience.
@@ -99,7 +101,7 @@ This behaviour is intentional and ensures that you do not try to access or use a
99
101
 
100
102
  ## ⭐️ Show your support
101
103
 
102
- Give a ⭐️ if this project helped you!
104
+ Give a ⭐️ on GitHub if this project helped you!
103
105
 
104
106
  ## 📝 License
105
107
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "express-zod-safe",
3
- "version": "1.0.1",
3
+ "version": "1.0.5",
4
4
  "description": "TypeScript-friendly middleware designed for Express applications, leveraging the robustness of Zod schemas to validate incoming request bodies, parameters, and queries.",
5
5
  "main": "dist/index.js",
6
6
  "repository": {