Docz makes it easy to write and publish beautiful interactive documentation for your code.
Create MDX files showcasing your code and Docz turns them into a live-reloading, production-ready site.
- π Start a New Project
- β Add Docz to an Existing Project
- π© Features
- π€ Why?
- π Examples
- ππ» More info on our website
- π Plugins
- π Around the world
- πͺπ» Contributors
- π€ Contributing
- π Need Help?
Use create-docz-app to quickly get started :
npx create-docz-app my-docz-app
# or
yarn create docz-app my-docz-app --example typescript
Start by adding docz
as a dependency :
$ yarn add --dev docz@next # react react-dom
# or
$ npm install --save-dev docz@next # react react-dom
Note:
react
andreact-dom
will not be installed automatically. You'll have to install them yourself.
Then, add .mdx
files anywhere in your project:
---
name: Button
route: /
---
import { Playground, Props } from 'docz'
import Button from './Button'
# Button
<Props of={Button} />
## Basic usage
<Playground>
<Button type="submit">Click me</Button>
<Button>No, click me</Button>
</Playground>
And a Button component Button.jsx
:
import React from 'react'
import t from 'prop-types'
const Button = ({ children, type }) => <button type={type}>{children}</button>
Button.propTypes = {
/**
* This is a pretty good description for this prop.
* Button type.
*/
type: t.oneOf(['button', 'submit', 'reset']),
}
Button.defaultProps = {
type: 'button',
}
export default Button
Finally, run the Docz development server:
$ yarn docz dev
That's it! You now have an interactive site to showcase and debug your components, and some badass documentation as a nice bonus π
- π© Powered by Gatsby. Bundling and ecosystem powered by Gatsby.
- π§ Zero config and easy. Don't worry about complex configurations steps.
- β‘οΈ Blazing Fast. Hot reload support and automatic code splitting out of the box.
- π Easy to customize. Create and use real customizable themes.
- π MDX Based. Write markdown enhanced by the power of components.
- π Pluggable. Use plugins to manipulate and customize Docz to suit your needs.
- π Typescript Support. Full support for TypeScript. Write your type definitions with no extra setup required.
Still not convinced ? Check our docs to learn more about Docz!
Libraries that make development easier are appearing every day. Style guides and design systems are growing in popularity. Today, tools that allow us to get our best work done and be efficient are necessary. We shouldn't be spending too much time on tasks that should be trivial. This is why we created Docz.
Documenting code is one of the most important and time-heavy processes when you're creating something new. A lot of time is wasted on unnecessarily attempting to build a documentation site that will match the style you want.
-
basic - Barebones example.
-
gatsby - Example using Docz in a Gastby project.
-
react native - Using Docz in a React Native project.
-
styled-components - Using Docz with
styled-components
. -
with typescript - Using Docz with Typescript.
-
with flow - Using Docz with Flow.
-
with images - Using Docz with images in mdx and jsx.
-
with sass - Using Docz parsing CSS with SASS.
-
with less - Using Docz parsing CSS with LESS.
-
with stylus - Using Docz parsing CSS with Stylus.
-
with css modules: works out of the box with gatsby
ππ» More info on our website
- gatsby-theme-docz - Use Docz as a theme for Gatsby.
- netlify - Deploy your Docz site to Netlify.
- svg sprite loader - Docz plugin for SVG sprite loader.
- snapshots - A plugin for Docz that creates jest snapshots for all documented component usages.
- Smooth UI - Modern React UI library.
- Set Protocol Docs - Documentation site of Set Protocol.
- RBX - The Comprehensive Bulma UI Framework for React.
- Circuit UI - React component library for SumUp web apps.
- Fannypack - A friendly & accessible React UI Kit built with Reakit.
- React Pixi - React Fiber renderer for Pixi.
- React Hotkey Tooltip - A global Hotkey provider with built in tooltip for React.
- Sajari React SDK - Library of React Components for the Sajari.
This project exists thanks to all the people who contribute. [Contribute].
All kinds of contributions are very welcome and appreciated !
If you want to contribute time to docz then here's a list to get you started :
- βοΈ Star the project
- π¬ Help people in the issues by sharing your knowledge and experience
- π Find and report issues
- π₯ Submit PRs to help solve issues or add features
- β Influence the future of docz with feature requests
If you're looking for a place to start make sure to check issues tagged with
And make sure to read the Contributing Guide before making a pull request.
You can also contribute money to help secure docz's future.
If you need some help, feel free to open an issue with a description of the problem you're facing or chat with us on our Spectrum Community.