Awesome
Learning docsify
Just one of the things I'm learning. https://github.com/hchiam/learning
Generate documentation site on the fly (parse markdown files instead of generating static HTML files).
https://docsify.js.org/#/quickstart
From scratch
Using yarn
:
yarn init
yarn global add docsify-cli
Or with npm
:
npm init
npm install docsify-cli -g
And then:
docsify init ./docs
docsify serve docs
# http://localhost:3000
Starting by testing out this repo
Using yarn
: (triple-click to select all)
git clone https://github.com/hchiam/learning-docsify.git && cd learning-docsify && yarn global add docsify-cli && yarn dev
Or with npm
: (triple-click to select all)
git clone https://github.com/hchiam/learning-docsify.git && cd learning-docsify && npm install docsify-cli -g && npm run dev