@amitgaikwad37/api-contract-drift-detector 0.1.0-beta.18 → 0.1.0-beta.20
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/README.md +9 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
# API Contract Drift Detector
|
|
2
2
|
|
|
3
|
+
Detect drift between OpenAPI specs and backend implementations before it reaches production.
|
|
4
|
+
|
|
5
|
+
## 📦 Registry & Repository
|
|
6
|
+
|
|
7
|
+
- **npm**: [@amitgaikwad37/api-contract-drift-detector](https://www.npmjs.com/package/@amitgaikwad37/api-contract-drift-detector)
|
|
8
|
+
- **GitHub**: [amitgaikwad2837/api-contract-drift-detector](https://github.com/amitgaikwad2837/api-contract-drift-detector)
|
|
9
|
+
|
|
3
10
|
## Overview
|
|
4
11
|
|
|
5
|
-
|
|
12
|
+
This SDK detects breaking changes between OpenAPI contract definitions and actual backend implementations, catching regressions before they reach production. Ideal for API-first development and contract testing in CI/CD pipelines.
|
|
6
13
|
|
|
7
14
|
## Installation
|
|
8
15
|
|
|
9
16
|
~~~bash
|
|
10
|
-
npm install @
|
|
17
|
+
npm install @amitgaikwad37/api-contract-drift-detector
|
|
11
18
|
~~~
|
|
12
19
|
|
|
13
20
|
## Quick Start
|