# swift-docc-render **Repository Path**: mirrors_apollographql/swift-docc-render ## Basic Information - **Project Name**: swift-docc-render - **Description**: Web renderer for Swift-DocC documentation. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-17 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Swift-DocC-Render Swift-DocC-Render is a web Single Page Application (SPA) powered by [Vue.js](https://vuejs.org/) for creating rich code documentation websites. Pages and content are generated using render JSON data from DocC. It comes with a well suited design for documentation websites. SPAs are web apps that render dynamically at runtime entirely in the browser, using JavaScript. [Swift-DocC](https://github.com/apple/swift-docc) is a tool for building and previewing documentation, aimed at making it easy to generate reference documentation from frameworks and packages, as well as free-form articles and tutorials authored in Markdown. It produces a folder in the Documentation Archive format (extension `.doccarchive`), which contains a machine-readable output of the documentation as JSON data that Swift-DocC-Render uses to produce rendered documentation. ## Getting Started > Note: requires [Node.js](https://nodejs.org/en/download/) v14 > and [npm](https://www.npmjs.com/package/npm) v6.14 1. **Download this repository and go to its folder** ```shell git clone https://github.com/apple/swift-docc-render.git cd swift-docc-render ``` 2. **Install dependencies** ```shell npm install ``` 3. **Run a local server with hot reload at [localhost:8080](http://localhost:8080/)** You may want to set a proxy to handle data requests while developing locally by setting the VUE_APP_DEV_SERVER_PROXY env variable to a documentation archive (.doccarchive or .docc-build) on your disk or served in a HTTP endpoint: ```shell VUE_APP_DEV_SERVER_PROXY=[path to documentation archive] npm run serve ``` As an alternative you can just create a `.env.development.local` file on the root of the project to add the `VUE_APP_DEV_SERVER_PROXY` env variable so you don't have to set it in the `npm run serve` script each time. ## Using Swift-DocC-Render to render documentation Follow [these steps](https://github.com/apple/swift-docc#using-docc-to-build-and-preview-documentation) to generate a documentation archive, set the path to your renderer and render locally your documentation using Swift-DocC-Render. ## Rendering and building docs You need to have [DocC](https://swift.org/documentation/docc) installed, in order to preview and build documentation. Read [Getting Started with Swift](https://www.swift.org/getting-started/) to learn more. To preview the docs, run `npm run docs:preview`. This will spawn a preview server on http://localhost:8000/documentation/doccrender. To build the docs, run `npm run docs:build`. ## Bug Reports and Feature Requests ### Submitting a Bug Report Swift-DocC-Render tracks all bug reports with [Swift JIRA](https://bugs.swift.org/). When you submit a bug report we ask that you follow the Swift [Bug Reporting](https://swift.org/contributing/#reporting-bugs) guidelines and provide as many details as possible. If you can confirm that the bug occurs when using the latest commit of Swift-DocC from the `main` branch (see [Building Swift-DocC-Render](/CONTRIBUTING.md#build-and-run-swift-docc-render)), that will help us track down the bug faster. ### Submitting a Feature Request For feature requests, please feel free to create an issue on [Swift JIRA](https://bugs.swift.org/) with the `New Feature` type or start a discussion on the [Swift Forums](https://forums.swift.org/c/development/swift-docc). Don't hesitate to submit a feature request if you see a way Swift-DocC-Render can be improved to better meet your needs. All user-facing features must be discussed in the [Swift Forums](https://forums.swift.org/c/development/swift-docc) before being enabled by default. ## Contributing to DocC Please see the [contributing guide](/CONTRIBUTING.md) for more information.