swagger-autogen-ast 1.0.5 → 1.0.6
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 +8 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,13 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
**Zero-config OpenAPI 3.0 generation for Express.**
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/swagger-autogen-ast)
|
|
6
|
+
[](https://www.npmjs.com/package/swagger-autogen-ast)
|
|
7
|
+
[](https://opensource.org/licenses/MIT)
|
|
8
|
+
|
|
9
|
+
[View on NPM](https://www.npmjs.com/package/swagger-autogen-ast) | [View on GitHub](https://github.com/anthfgreco/swagger-autogen-ast)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
5
13
|
This is the AST-based successor to [swagger-autogen](https://www.npmjs.com/package/swagger-autogen). It uses the TypeScript Compiler API to statically analyze your routes, types, and controller logic to generate a spec that matches your code.
|
|
6
14
|
|
|
7
15
|
Intended for use with [swagger-ui-react](https://www.npmjs.com/package/swagger-ui-react) and/or importing to [Postman](https://www.postman.com/).
|
|
8
16
|
|
|
9
|
-
[](https://www.npmjs.com/package/swagger-autogen-ast)
|
|
10
|
-
[](https://opensource.org/licenses/MIT)
|
|
11
|
-
|
|
12
17
|
## Why?
|
|
13
18
|
|
|
14
19
|
Swagger generators are annoying. They require tons of manual config or intrusive code annotations (both which I didn't want to do).
|
package/package.json
CHANGED