Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ouropencode/OpenDocumenter
OpenDocumenter is a automatic documentation generator for OpenAPI v3 schemas. Simply provide your schema file in JSON or YAML, then sit back and enjoy the documentation.
https://github.com/ouropencode/OpenDocumenter
documentation generator openapi
Last synced: about 2 months ago
JSON representation
OpenDocumenter is a automatic documentation generator for OpenAPI v3 schemas. Simply provide your schema file in JSON or YAML, then sit back and enjoy the documentation.
- Host: GitHub
- URL: https://github.com/ouropencode/OpenDocumenter
- Owner: ouropencode
- License: mit
- Created: 2020-07-31T10:32:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T10:39:17.000Z (about 2 years ago)
- Last Synced: 2024-08-01T09:25:55.334Z (5 months ago)
- Topics: documentation, generator, openapi
- Language: Vue
- Homepage:
- Size: 8.6 MB
- Stars: 161
- Watchers: 2
- Forks: 11
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
OpenDocumenter
OpenDocumenter is a automatic documentation generator for [OpenAPI v3](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md) schemas. Simply provide your schema file in JSON or YAML, then sit back and enjoy the documentation.
Powered by [nuxt.js](https://nuxtjs.org/https://nuxtjs.org/) and [swagger-parser](https://github.com/swagger-api/swagger-parser).
## Example
For a live preview of documentation generated with OpenDocumenter you can view our demo documentation "**[Quisque API](https://ouropencode.github.io/OpenDocumenter/)**". This example uses lorem-ipsum for all content to provide placeholder text used to demonstrate the form of a document without relying on meaningful content.## Installation
```bash
> npm install -g opendocumenter
```
or
```bash
> yarn global add opendocumenter
```## Usage
```
> opendocumenter --help_____ ____ _
| |___ ___ ___| \ ___ ___ _ _ _____ ___ ___| |_ ___ ___
| | | . | -_| | | | . | _| | | | -_| | _| -_| _|
|_____| _|___|_|_|____/|___|___|___|_|_|_|___|_|_|_| |___|_|
|_|OpenDocumenter is a automatic documentation generator for OpenAPI v3 schemas.
Simply provide your schema file in JSON or YAML, then sit back and enjoy the documentation.Powered by nuxt.js and swagger-parser.
Usage:
opendocumenter --schema= --output=
Arguments:
--schema= (required) The OpenAPI 3 format file to generate documentation from.
--output= (required) The output destination directory.
--config= A configuration file to load advanced options from.
```## Configuration
OpenDocumenter can be configured using a `.json` file stored alongside your schema file.### Merge From Directory
The `mergeFromDirectory` parameter allows you to specify a directory that will be copied over the base template before building. This allows customization of any part of OpenDocumenter to suit your needs.```json
{
"mergeFromDirectory": "./overrides"
}
```Any part of the OpenDocumenter vue source (see: [./src](./src)) can be overridden, just ensure to follow the same directory structure!
```
overrides
|- assets
| '- theme.less
'- components
|- DocHeader.vue
'- DocEntry.vue
```### 'Generated Using' Footer
By default, a small 'Generated Using' message is included on the footer of the generated documentation. Although we'd love you to keep it, you can disable this by setting the `disableGeneratedUsingFooter` parameter to true.```json
{
"disableGeneratedUsingFooter": true
}
```### Aborting on Invalid Schema
OpenDocumenter is capable of generating documentation for OpenAPI schemas that don't match the OpenAPI Specification entirely. When generating we attempt to validate your schema, display any validation warnings, and then continue to generate. If you would like the generation to abort when a schema is invalid you can set the `abortOnInvalidSchema` parameter to true.```json
{
"abortOnInvalidSchema": true
}
```### Shields / Badges
Various shields are included in the generated documentation header, such as the API version. Additional shields can be added using the `shields` parameter. Each shield is an object containing either the `url` key, or a combination of `left`, `right` and `color`. The `translate` parameter can be used (`left`, `right`, `both`) to run the text through the internationalization handler. An optional link can provided with the `href` parameter. All shields are generated using [shields.io](https://shields.io) unless a URL is provided.```json
{
"shields": [
{ "url": "https://img.shields.io/badge/test-1.2.3--test-blue" },
{ "left": "test", "right": "1.2.3-test", "color": "blue" },
{
"left": "test",
"right": "1.2.3-test",
"color": "blue",
"href": "https://www.example.com"
}
]
}
```### Build: Modern Mode
By default, the build-chain produces "Modern Mode" output, shipping native ES2015 code to modern browsers that support it, with auto fallback to a legacy bundle. This can be turned off by setting `vueModernMode` parameter, afterwards the build-chain produces "Legacy" output for older browser compatibility.```json
{
"vueModernMode": false
}
```### Build: Reporting
You can control the reporting output from the build-chain with the `vueReport` parameter. This defaults to `none` and can be set to `json`, `html` or `both`. With this enabled the build-chain will output a report file describing the webpack bundle.```json
{
"vueReport": "html"
}
```### Internationalization
Most of the documentation text is taken directly from the OpenAPI schema file, however, there are various strings throughout the project that cannot be stored within the schema file. All of these strings are customizable by editing the `i18n` parameter.
```json
{
"i18n": {
"API_SDK_DOCUMENTATION": "API and SDK Documentation",
"VERSION": "version",
"NO_INDEPTH_DOCS_AVAILABLE_ENDPOINT": "No in-depth API documentation is available for this endpoint.",
"NO_INDEPTH_DOCS_AVAILABLE_TAG": "No in-depth API documentation is available for this section.",
"CLICK_TO_COPY": "click to copy",
"COPIED": "copied",
"REQUEST_BODY": "Request Body",
"REQUEST_RESPONSES": "Request Responses",
"DEFINITION": "Definition",
"DEFINITIONS": "Definitions",
"SERVER": "Server",
"LANGUAGE": "Language",
"GENERATED_USING": "Generated using OpenDocumenter by $ourOpenCode",
"HAVE_ANY_QUESTIONS_CONTACT": "Have any questions? Please contact",
"US": "us",
"OR": "or",
"VIA_EMAIL": "via email",
"VIA_OUR_WEBSITE": "via our website",
"TERMS_OF_SERVICE": "Terms of Service",
"SEND_US_AN_EMAIL": "Send us an email",
"VISIT_OUR_WEBSITE": "Visit our website",
"EXTERNAL_DOCUMENTATION": "External Documentation",
"DOCUMENTATION": "Documentation"
}
}
```> There is a single end-user visible string that isn't configurable in this config. The "Loading Documentation..." text in the page title, briefly shown during page load, is only configurable using the "Merge From Directory" parameter.
## License
Licensed under the MIT license. Please see [LICENSE](LICENSE) for more details.