Installing NotiDocs is quick and easy. In this guide, we’ll show you how to add the library to your project, configure it, and generate your first documentation in minutes.
NotiDocs is available as an npm package. Ensure you have Node.js installed and run the following command in your terminal:
npm install notidocs
This will install NotiDocs and its dependencies in your project.
Create a notidocs.config.js
file in your project’s root to specify which files to scan and where to generate the documentation:
module.exports = { files: ['**/*.js'], // Scans all JS files output: './docs', // Local output folder (optional) notion: { apiKey: 'secret_abc123xyz', // Notion API key page: 'NotiDocs Workspace' // Default Notion page } };
Note: Get your Notion API key from Notion Integrations and configure it in Settings.
Once configured, run this command to scan your code and generate the documentation:
npx notidocs generate
NotiDocs will analyze your files, look for supported tags (see Wiki), and send the documentation to the specified Notion page.
Set up NotiDocs now and generate professional documentation in minutes.
Go to Dashboard