It is recommended to install docsify-cli globally, which helps initializing and previewing the website locally.
npm i docsify-cli -gIf you want to write the documentation in the ./docs subdirectory, you can use the init command.
docsify init ./docsAfter the init is complete, you can see the file list in the ./docs subdirectory.
index.htmlas the entry fileREADME.mdas the home page.nojekyllprevents GitHub Pages from ignoring files that begin with an underscore
You can easily update the documentation in ./docs/README.md, of course you can add more pages.
Run the local server with docsify serve. You can preview your site in your browser on http://localhost:3000.
docsify serve docs