@knowcode/doc-builder 1.4.7 → 1.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package/README.md DELETED
@@ -1,248 +0,0 @@
1
- # @knowcode/doc-builder
2
-
3
- A zero-configuration documentation builder for markdown-based sites with Vercel deployment support.
4
-
5
- ## What It Does
6
-
7
- @knowcode/doc-builder transforms your markdown files into beautiful, static documentation websites. It:
8
-
9
- - **Scans** your markdown files and automatically generates navigation
10
- - **Converts** markdown to HTML with syntax highlighting and diagram support
11
- - **Styles** everything with a clean, Notion-inspired theme
12
- - **Deploys** to Vercel with a single command - no configuration needed
13
- - **Provides** optional features like authentication, dark mode, and changelog generation
14
-
15
- Perfect for project documentation, API references, knowledge bases, or any content written in markdown.
16
-
17
- ## Features
18
-
19
- - 🚀 **Zero Configuration** - Works out of the box with sensible defaults
20
- - 📝 **Markdown Support** - Write docs in markdown with full GitHub Flavored Markdown support
21
- - 🎨 **Beautiful Default Theme** - Clean, responsive design inspired by Notion
22
- - 🔐 **Optional Authentication** - Password-protect your documentation
23
- - 📊 **Mermaid Diagrams** - Built-in support for diagrams and charts
24
- - 🌙 **Dark Mode** - Automatic dark mode support
25
- - 🔄 **Live Reload** - Development server with hot reloading
26
- - ☁️ **Vercel Integration** - One-command deployment to Vercel
27
- - 📦 **Self-Contained** - No configuration or setup required
28
-
29
- ## Quick Start
30
-
31
- No installation needed! Just run:
32
-
33
- ```bash
34
- # Build and deploy to Vercel
35
- npx @knowcode/doc-builder deploy
36
-
37
- # Other available commands:
38
- npx @knowcode/doc-builder build # Build HTML files only
39
- npx @knowcode/doc-builder dev # Start development server
40
- npx @knowcode/doc-builder # Show help (default behavior)
41
- ```
42
-
43
- ## Installation (Optional)
44
-
45
- For faster execution and offline use:
46
-
47
- ```bash
48
- npm install --save-dev @knowcode/doc-builder
49
- ```
50
-
51
- Then use shorter commands:
52
- ```bash
53
- doc-builder build
54
- doc-builder dev
55
- doc-builder deploy
56
- ```
57
-
58
- ## First-Time Vercel Deployment
59
-
60
- When deploying for the first time, doc-builder will:
61
-
62
- 1. Check if Vercel CLI is installed
63
- 2. Guide you through project setup
64
- 3. Create `vercel.json` configuration
65
- 4. Link your project to Vercel
66
- 5. Show important reminders about Vercel settings
67
-
68
- ### Important Vercel Settings
69
-
70
- After deployment, go to your Vercel dashboard:
71
-
72
- 1. Navigate to **Project Settings > General**
73
- 2. Under **Security**, find **Deployment Protection**
74
- 3. Set to **Disabled** for public access
75
- 4. Or configure authentication for private docs
76
-
77
- ## Configuration
78
-
79
- Create `doc-builder.config.js` in your project root:
80
-
81
- ```javascript
82
- module.exports = {
83
- // Directories
84
- docsDir: 'docs',
85
- outputDir: 'html',
86
-
87
- // Site info
88
- siteName: 'My Documentation',
89
- siteDescription: 'Documentation for my project',
90
-
91
- // Features
92
- features: {
93
- authentication: true,
94
- changelog: true,
95
- mermaid: true,
96
- darkMode: true
97
- },
98
-
99
- // Authentication
100
- auth: {
101
- username: 'admin',
102
- password: 'secret'
103
- }
104
- };
105
- ```
106
-
107
- ## Presets
108
-
109
- Use the `notion-inspired` preset for a clean, modern documentation style:
110
-
111
- ```bash
112
- npx @knowcode/doc-builder build --preset notion-inspired
113
- ```
114
-
115
- ## Commands
116
-
117
- ### build
118
- Build the documentation site to static HTML:
119
- ```bash
120
- doc-builder build [options]
121
-
122
- Options:
123
- -c, --config <path> Path to config file (default: "doc-builder.config.js")
124
- -i, --input <dir> Input directory containing markdown files (default: docs)
125
- -o, --output <dir> Output directory for HTML files (default: html)
126
- --preset <preset> Use a preset configuration (available: cybersolstice)
127
- --legacy Use legacy mode for backward compatibility
128
- --no-auth Disable authentication even if configured
129
- --no-changelog Disable automatic changelog generation
130
-
131
- Examples:
132
- doc-builder build # Build with defaults
133
- doc-builder build --input docs --output dist
134
- doc-builder build --preset notion-inspired # Use Notion-inspired preset
135
- doc-builder build --config my-config.js # Use custom config
136
- ```
137
-
138
- ### dev
139
- Start development server with live reload:
140
- ```bash
141
- doc-builder dev [options]
142
-
143
- Options:
144
- -c, --config <path> Path to config file (default: "doc-builder.config.js")
145
- -p, --port <port> Port to run dev server on (default: 3000)
146
- -h, --host <host> Host to bind to (default: localhost)
147
- --no-open Don't open browser automatically
148
-
149
- Examples:
150
- doc-builder dev # Start on http://localhost:3000
151
- doc-builder dev --port 8080 # Use custom port
152
- doc-builder dev --host 0.0.0.0 # Allow external connections
153
- ```
154
-
155
- ### deploy
156
- Deploy documentation to Vercel (requires Vercel CLI):
157
- ```bash
158
- doc-builder deploy [options]
159
-
160
- Options:
161
- -c, --config <path> Path to config file (default: "doc-builder.config.js")
162
- --prod Deploy to production (default: preview deployment)
163
- --no-build Skip building before deployment
164
- --force Force deployment without confirmation
165
-
166
- Examples:
167
- doc-builder deploy # Deploy preview to Vercel
168
- doc-builder deploy --prod # Deploy to production
169
- doc-builder deploy --no-build # Deploy existing build
170
-
171
- First-time setup:
172
- The tool will guide you through:
173
- 1. Installing Vercel CLI (if needed)
174
- 2. Creating a new Vercel project
175
- 3. Configuring deployment settings
176
-
177
- Important: After deployment, disable Vercel Authentication in project settings for public docs.
178
- ```
179
-
180
- ### init
181
- Initialize doc-builder in your project:
182
- ```bash
183
- doc-builder init [options]
184
-
185
- Options:
186
- --config Create configuration file
187
- --example Create example documentation structure
188
-
189
- Examples:
190
- doc-builder init --config # Create doc-builder.config.js
191
- doc-builder init --example # Create example docs folder
192
- ```
193
-
194
- ## Project Structure
195
-
196
- Your project should follow this structure:
197
-
198
- ```
199
- my-project/
200
- ├── docs/ # Markdown files
201
- │ ├── README.md
202
- │ ├── guide/
203
- │ └── api/
204
- ├── doc-builder.config.js # Configuration (optional)
205
- └── package.json
206
- ```
207
-
208
- ## Using in Other Projects
209
-
210
- ### Option 1: NPM Link (Development)
211
-
212
- While developing the doc-builder:
213
-
214
- ```bash
215
- # In doc-builder directory
216
- npm link
217
-
218
- # In your other project
219
- npm link @knowcode/doc-builder
220
- ```
221
-
222
- ### Option 2: File Reference
223
-
224
- In your project's `package.json`:
225
-
226
- ```json
227
- {
228
- "devDependencies": {
229
- "@knowcode/doc-builder": "file:../path/to/doc-builder"
230
- }
231
- }
232
- ```
233
-
234
- ### Option 3: Git Repository
235
-
236
- Once published:
237
-
238
- ```json
239
- {
240
- "devDependencies": {
241
- "@knowcode/doc-builder": "git+https://github.com/knowcode/doc-builder.git"
242
- }
243
- }
244
- ```
245
-
246
- ## License
247
-
248
- MIT