Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xop/awsm-docs

Design System Documentation Website Slingshot
https://github.com/xop/awsm-docs

astro design-system design-tokens headless-components scaffolding ui-components ui-library

Last synced: 5 days ago
JSON representation

Design System Documentation Website Slingshot

Awesome Lists containing this project

README

        

# AWSM Design System Documentation Website Slingshot

> See it in [Action](https://awsm-docs.vercel.app/)

## About

AWSM Docs is practically a template for a quick scaffolding of Design System (or UI library) documentation.
It is built with [Astro](https://astro.build/) and relies on [MDX](https://docs.astro.build/en/guides/markdown-content/) for documentation, which is non-developer friendly. However the most interesting part is using [Storybook](https://storybook.js.org/) stories format both for development and examples in the docs website.

## Contents

Repo is organized with [nx](https://nx.dev/) and split into apps and packages.

### Apps

Apps contain **docs**, which is the documentation project itself.

Another app is **storybook**, which is used for UI development.
Note, that it is set up to consume stories from the relative path,
compared to the classic in-project location.

Both apps consume and expose stories from the UI package.

### Packages

There are core and support packages.
Core packages consist of design tokens (`awsm-tokens`) and UI library (`awsm-ui`).
Support packages are basically configuration - `eslint-config-awsm` and `awsm-tsconfig`.

## Technologies

### UI library

UI library is represented by several classic elements from 2 categories - `Button`, `Switch` and `Disclosure`.
Each component is using a different headless UI library for demo purposes.
Storybook can be adjusted respectively, but in this case there's no need.

Note that I use React, however there should be no problem with using Vue, Solid etc.

Headless libraries used:

- [React Aria components](https://react-spectrum.adobe.com/react-aria/index.html)
- [Radix UI primitives](https://www.radix-ui.com/primitives)
- [Headless UI components](https://headlessui.com/)

### Styling

There are 2 styling approaches in this project for demonstration purposes.
First is scoped CSS in Astro, along with CSS modules. Both rely on CSS variables as design tokens.
Second is using [vanilla-extract](https://vanilla-extract.style/) as a styling engine,
to showcase CSS-in-JS application and JS tokens as well.

There should be no issues with using alternative styling engines,
however you would need to adjust settings in `.storybook` and `astro.config.mjs`.

## Usage

Install project dependencies:
```sh
pnpm i
```

Run Storybook:
```sh
nx run storybook:dev
```

Run Docs locally:
```sh
nx run docs:dev
```

Similarly, build Docs:
```sh
nx run docs:build
```

## Customization

Docs app is made with customization and scaling in mind.

The structure of the website is pretty much traditional for the Design System websites,
which gives a solid kickstart, yet there are many things that can be improved further.

Components in docs are intentionally under-styled, just to give a sense of presentation.
Same for functionality, pages, structure - everything can be tweaked or removed for your benefit.

## Extras

To learn more about the project in less technical terms welcome to check out the article on your favorite platform:

- [Medium](https://medium.com/@genedesign/how-to-build-awsm-docs-07375167a6b2)
- [dev.to](https://dev.to/genedesign/how-to-build-awsm-docs-with-storybook-and-astro-4ego)
- [Hasnode](https://designtokens.hashnode.dev/awsm-docs-with-storybook-and-astro)
- [Substack](https://genedesign.substack.com/p/how-to-build-awsm-docs)

## [LICENSE](./LICENSE)