.github | ||
.vscode | ||
benchmark | ||
cli | ||
config/docker | ||
demo | ||
docs | ||
e2e | ||
src | ||
tests/e2e | ||
typings | ||
.dockerignore | ||
.editorconfig | ||
.eslintrc.js | ||
.gitignore | ||
.npmignore | ||
.travis.yml | ||
CHANGELOG.md | ||
custom.d.ts | ||
cypress.json | ||
FAQ.md | ||
karma.conf.js | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json | ||
tsconfig.lib.json | ||
tslint.json | ||
webpack.config.ts |

Generate interactive API documentation from OpenAPI definitions
This README is for the 2.0
version of ReDoc (React-based). README for the 1.x
version is on the v1.x branch.
About ReDoc
TODO: Three-sentence introduction: what it does, who makes it, who it's for.
[Get started with ReDoc](link to Quick Start section/document)
More from Redoc.ly
What's the difference between ReDoc and other Redoc.ly products?
TODO: Describe the difference, insert link to detailed feature comparison.
Project Status
Project License
TODO: Link to contributing guidelines
Table of Contents
TODO: add links
- Feature Guide
- Quick Start Guide
- Support
- Installation and Usage
- Standalone
- React component
- redoc-cli
- Docker
- Configuration
- Advanced Options
- Who is using ReDoc?
- Project Development
- Roadmap
- Contributing
- Releases
- OpenAPI Version Support
Feature Guide
TODO:
Insert a table that compares ReDoc Community Edition features and premium features.
Clean up the old list of features with animated GIFs.
Mention how ReDoc can integrate into a workflow with other tools like create-openapi-repo.
Quick Start Guide
TODO:
- Provide steps for the fastest way to build something
- Clarify that OpenAPI specs must be edited in another tool - redoc only builds them!
Support
TODO:
Links to
- FAQ
- Documentation
- How to report an issue
Installation and Usage
TODO:
- List all supported ways to install and deploy
- For each, include Dependencies and Prerequisites
Configuration
TODO: Clean up and reorganize this section
Security Definition location
You can inject Security Definitions widget into any place of your specification description
. Check out details here.
Swagger vendor extensions
ReDoc makes use of the following vendor extensions:
x-logo
- is used to specify API logox-traitTag
- useful for handling out common things like Pagination, Rate-Limits, etcx-codeSamples
- specify operation code samplesx-examples
- specify JSON example for requestsx-nullable
- mark schema param as a nullablex-displayName
- specify human-friendly names for the menu categoriesx-tagGroups
- group tags by categories in the side menux-servers
- ability to specify different servers for API (backported from OpenAPI 3.0)x-ignoredHeaderParameters
- ability to specify header parameter names to ignorex-additionalPropertiesName
- ability to supply a descriptive name for the additional property keys
<redoc>
options object
You can use all of the following options with standalone version on tag by kebab-casing them, e.g. scrollYOffset
becomes scroll-y-offset
and expandResponses
becomes expand-responses
.
disableSearch
- disable search indexing and search box.expandDefaultServerVariables
- enable expanding default server variables, defaultfalse
.expandResponses
- specify which responses to expand by default by response codes. Values should be passed as comma-separated list without spaces e.g.expandResponses="200,201"
. Special value"all"
expands all responses by default. Be careful: this option can slow-down documentation rendering time.hideDownloadButton
- do not show "Download" spec button. THIS DOESN'T MAKE YOUR SPEC PRIVATE, it just hides the button.hideHostname
- if set, the protocol and hostname is not shown in the operation definition.hideLoading
- do not show loading animation. Useful for small docs.hideSingleRequestSampleTab
- do not show the request sample tab for requests with only one sample.expandSingleSchemaField
- automatically expand single field in a schemajsonSampleExpandLevel
- set the default expand level for JSON payload samples (responses and request body). Special value 'all' expands all levels. The default value is2
.hideSchemaTitles
- do not display schematitle
next to to the typesimpleOneOfTypeLabel
- show only unique oneOf types in the label without titleslazyRendering
- Not implemented yetif set, enables lazy rendering mode in ReDoc. This mode is useful for APIs with big number of operations (e.g. > 50). In this mode ReDoc shows initial screen ASAP and then renders the rest operations asynchronously while showing progress bar on the top. Check out the demo for the example.menuToggle
- if true clicking second time on expanded menu item will collapse it, defaultfalse
.nativeScrollbars
- use native scrollbar for sidemenu instead of perfect-scroll (scrolling performance optimization for big specs).noAutoAuth
- do not inject Authentication section automatically.onlyRequiredInSamples
- shows only required fields in request samples.pathInMiddlePanel
- show path link and HTTP verb in the middle panel instead of the right one.requiredPropsFirst
- show required properties first ordered in the same order as inrequired
array.scrollYOffset
- If set, specifies a vertical scroll-offset. This is often useful when there are fixed positioned elements at the top of the page, such as navbars, headers etc;scrollYOffset
can be specified in various ways:- number: A fixed number of pixels to be used as offset.
- selector: selector of the element to be used for specifying the offset. The distance from the top of the page to the element's bottom will be used as offset.
- function: A getter function. Must return a number representing the offset (in pixels).
showExtensions
- show vendor extensions ("x-" fields). Extensions used by ReDoc are ignored. Can be boolean or an array ofstring
with names of extensions to display.sortPropsAlphabetically
- sort properties alphabetically.suppressWarnings
- if set, warnings are not rendered at the top of documentation (they still are logged to the console).payloadSampleIdx
- if set, payload sample will be inserted at this index or last. Indexes start from 0.theme
- ReDoc theme. Not documented yet. For details check source code: theme.ts.untrustedSpec
- if set, the spec is considered untrusted and all HTML/markdown is sanitized to prevent XSS. Disabled by default for performance reasons. Enable this option if you work with untrusted user data!
Advanced usage of standalone version
Instead of adding spec-url
attribute to the <redoc>
element you can initialize ReDoc via globally exposed Redoc
object:
Redoc.init(specOrSpecUrl, options, element, callback?)
specOrSpecUrl
is either JSON object with specification or an URL to the spec inJSON
orYAML
formatoptions
options objectelement
DOM element to put ReDoc intocallback
(optional) - callback to be called after Redoc has been fully rendered. It is also called also on errors with error as the first argument
Redoc.init('http://petstore.swagger.io/v2/swagger.json', {
scrollYOffset: 50
}, document.getElementById('redoc-container'))
Who is using ReDoc?
Project Development
Roadmap
TODO: update this
OpenAPI v3.0 supportperformance optimizationsbetter navigation (menu improvements + search)React rewritedocs pre-rendering (performance and SEO)- ability to simple branding/styling
- built-in API Console
Contributing
TODO:
mention career options
Releases
Important: all the 2.x releases are deployed to npm and can be used via jsdeliver:
- particular release, e.g.
v2.0.0-alpha.15
: https://cdn.jsdelivr.net/npm/redoc@2.0.0-alpha.17/bundles/redoc.standalone.js next
release: https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js
Additionally, all the 1.x releases are hosted on our GitHub Pages-based CDN (deprecated):
- particular release, e.g.
v1.2.0
: https://rebilly.github.io/ReDoc/releases/v1.2.0/redoc.min.js v1.x.x
release: https://rebilly.github.io/ReDoc/releases/v1.x.x/redoc.min.jslatest
release: https://rebilly.github.io/ReDoc/releases/latest/redoc.min.js - it will point to latest 1.x.x release since 2.x releases are not hosted on this CDN but on unpkg.
OpenAPI Version Support
ReDoc Release | OpenAPI Specification |
---|---|
2.0.0-alpha.x | 3.0, 2.0 |
1.19.x | 2.0 |
1.18.x | 2.0 |
1.17.x | 2.0 |