docus-feedback

Get Feedback on your Docus based documentation
Features
- 💾 SQLite based Storage
- ⛰ Handy composables
- 🗂 TypeScript Support
Quick Introduction
This module is an extension of the documentation theme Docus, this module creates an API endpoint for feedbacks, you then have the possibility to create a component like in the Example and allow the user to provide feedback for the documentation articles via the composable that comes with this module.
The feedbacks are stored in an SQLite Database and can be checked then.
Quick Setup
- Add
docus-feedback
dependency to your project
pnpm add -D docus-feedback
yarn add --dev docus-feedback
npm install --save-dev docus-feedback
- Add
docus-feedback
to the modules
section of nuxt.config.ts
export default defineNuxtConfig({
modules: [
'docus-feedback'
]
})
That's it! You can get feedback on your documentation ✨
Development
npm install
npm run dev:prepare
npm run dev
npm run dev:build
npm run lint
npm run test
npm run test:watch
npm run release