getting started

  1. Wirte markdown docs
  2. Run flybook

Write contents

Create docs directory and then write basic.md and advanced.md

  • docs/basic.md
## Basic

Basic Content
  • docs/advanced.md
## Advanced

Advanced Content

Add npm scripts

package.json

  ,
  "scripts": {
    "docs": "flybook docs"
  },
  ...

and then run npm run docs

Tutorial Video