File size: 10,783 Bytes
1e2511f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 | # API Reference
## Chahuadev Fix Comments Tool API
### Command Line Interface
#### Basic Usage
```bash
npx @chahuadev/fix-comments@beta [directory] [options]
```
#### Options
| Option | Short | Description | Default |
|--------|-------|-------------|---------|
| `--help` | `-h` | Show help information | |
| `--version` | `-v` | Show version number | |
| `--dry-run` | `-d` | Preview changes without applying | `false` |
| `--backup` | `-b` | Create backup before processing | `false` |
| `--verbose` | | Enable verbose logging | `false` |
| `--add-missing` | | Add missing comments to functions | `false` |
| `--convert-style` | | Convert /* */ to // comments | `true` |
| `--bilingual` | | Add Thai/English comments | `false` |
| `--ai-friendly` | | Generate AI-compatible comments | `false` |
| `--extensions` | `-e` | File extensions to process | `.js,.ts,.jsx,.tsx` |
#### Examples
```bash
# Add missing comments with backup
npx @chahuadev/fix-comments@beta . --add-missing --backup --verbose
# Preview changes first
npx @chahuadev/fix-comments@beta . --dry-run --verbose
# Convert comment styles only
npx @chahuadev/fix-comments@beta src/ --convert-style
# Bilingual comment generation
npx @chahuadev/fix-comments@beta . --add-missing --bilingual --backup
# AI-friendly format
npx @chahuadev/fix-comments@beta . --ai-friendly --add-missing
```
### Programmatic API
#### Installation
```bash
npm install @chahuadev/fix-comments@beta
```
#### Basic Usage
```javascript
const { FixComments } = require('@chahuadev/fix-comments');
const fixer = new FixComments({
backup: true,
verbose: true,
addMissing: true,
bilingual: false
});
// Fix a single file
await fixer.fixFile('./example.js');
// Fix a directory
await fixer.fixDirectory('./src', {
recursive: true,
extensions: ['.js', '.ts', '.jsx', '.tsx']
});
```
#### Constructor Options
```typescript
interface FixCommentsOptions {
backup?: boolean; // Create backup files
verbose?: boolean; // Enable verbose logging
dryRun?: boolean; // Preview only mode
addMissing?: boolean; // Add missing comments
convertStyle?: boolean; // Convert comment styles
bilingual?: boolean; // Add bilingual comments
aiFriendly?: boolean; // AI-compatible format
extensions?: string[]; // File extensions to process
}
```
#### Methods
##### `fixFile(filePath: string, options?: FileOptions): Promise<FixResult>`
Fix comments in a single file.
**Parameters:**
- `filePath`: Path to the file to fix
- `options`: Optional file-specific options
**Returns:** Promise resolving to `FixResult`
##### `fixDirectory(dirPath: string, options?: DirOptions): Promise<FixResult[]>`
Fix comments in all files in a directory.
**Parameters:**
- `dirPath`: Path to the directory to fix
- `options`: Optional directory-specific options
**Returns:** Promise resolving to array of `FixResult`
##### `analyzeFile(filePath: string): Promise<AnalysisResult>`
Analyze file without making changes.
**Parameters:**
- `filePath`: Path to the file to analyze
**Returns:** Promise resolving to `AnalysisResult`
#### Types
##### `FixResult`
```typescript
interface FixResult {
file: string; // File path
processed: boolean; // Whether file was processed
commentsAdded: number; // Number of comments added
commentsConverted: number; // Number of comments converted
backupCreated: boolean; // Whether backup was created
errors: string[]; // Any errors encountered
warnings: string[]; // Any warnings
}
```
##### `AnalysisResult`
```typescript
interface AnalysisResult {
file: string; // File path
functionsFound: number; // Number of functions found
commentsFound: number; // Number of comments found
missingComments: number; // Number of missing comments
suggestions: Suggestion[]; // List of suggestions
}
```
##### `Suggestion`
```typescript
interface Suggestion {
type: 'add' | 'convert' | 'improve';
line: number; // Line number
column: number; // Column number
function: string; // Function name
suggestion: string; // Suggested comment
priority: 'high' | 'medium' | 'low';
}
```
#### Events
The FixComments class extends EventEmitter and emits the following events:
```javascript
const fixer = new FixComments();
// File processing started
fixer.on('fileStart', (filePath) => {
console.log(`Processing: ${filePath}`);
});
// Function analyzed
fixer.on('functionAnalyzed', (functionInfo) => {
console.log(`Analyzed function: ${functionInfo.name}`);
});
// Comment added
fixer.on('commentAdded', (commentInfo) => {
console.log(`Added comment at line ${commentInfo.line}`);
});
// File processing completed
fixer.on('fileComplete', (result) => {
console.log(`Completed: ${result.file}`);
});
// Error occurred
fixer.on('error', (error, filePath) => {
console.error(`Error in ${filePath}:`, error);
});
```
### Comment Patterns
#### Function Comment Templates
##### JavaScript/TypeScript Functions
```javascript
/**
* [Function description]
* @param {type} paramName - Parameter description
* @returns {type} Return value description
*/
function functionName(paramName) {
// Function implementation
}
```
##### Bilingual Comments
```javascript
/**
* Calculate total price with tax / คำนวณราคารวมพร้อมภาษี
* @param {number} price - Base price / ราคาฐาน
* @param {number} taxRate - Tax rate / อัตราภาษี
* @returns {number} Total price / ราคารวม
*/
function calculateTotal(price, taxRate) {
return price * (1 + taxRate);
}
```
##### AI-Friendly Format
```javascript
// AI_FUNCTION: calculateTotal
// PURPOSE: Calculate total price including tax
// INPUT: price (number), taxRate (number)
// OUTPUT: number (total price)
// COMPLEXITY: O(1)
function calculateTotal(price, taxRate) {
return price * (1 + taxRate);
}
```
#### Comment Style Conversion
##### Before (Block Comments)
```javascript
/* This is a block comment */
function example() {
/* Another block comment */
return true;
}
```
##### After (Line Comments)
```javascript
// This is a block comment
function example() {
// Another block comment
return true;
}
```
### Configuration File
Create `.fixcommentsrc.json` for project-specific settings:
```json
{
"addMissing": true,
"convertStyle": true,
"bilingual": false,
"aiFriendly": false,
"backup": true,
"extensions": [".js", ".ts", ".jsx", ".tsx"],
"exclude": ["node_modules/**", "dist/**", "*.min.js"],
"commentStyle": "jsdoc",
"language": "auto"
}
```
### Integration Examples
#### GitHub Actions
```yaml
name: Fix Comments
on: [push, pull_request]
jobs:
fix-comments:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Fix Comments
run: npx @chahuadev/fix-comments@beta . --add-missing --backup
- name: Commit Changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -m "Auto-fix comments" || exit 0
git push
```
#### Pre-commit Hook
```bash
#!/bin/sh
# .git/hooks/pre-commit
npx @chahuadev/fix-comments@beta --dry-run --add-missing .
if [ $? -ne 0 ]; then
echo "Comment fixing failed. Run: npx @chahuadev/fix-comments@beta . --add-missing"
exit 1
fi
```
#### VS Code Integration
```json
{
"tasks": [
{
"label": "Fix Comments",
"type": "shell",
"command": "npx @chahuadev/fix-comments@beta . --add-missing --backup",
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
}
]
}
```
### Error Handling
#### Common Errors
| Error Code | Description | Solution |
|------------|-------------|----------|
| `PARSE_ERROR` | File parsing failed | Check syntax errors |
| `ENCODING_ERROR` | File encoding issue | Specify correct encoding |
| `PERMISSION_ERROR` | File access denied | Check file permissions |
| `BACKUP_FAILED` | Backup creation failed | Check disk space |
| `INVALID_SYNTAX` | Invalid JavaScript/TypeScript | Fix syntax errors first |
#### Error Example
```javascript
try {
const result = await fixer.fixFile('./example.js');
console.log('Success:', result);
} catch (error) {
console.error('Error:', error.message);
console.error('Code:', error.code);
console.error('File:', error.filePath);
console.error('Line:', error.line);
}
```
### Performance Considerations
- **AST Caching**: Results are cached to avoid reprocessing
- **Incremental Processing**: Only processes changed functions
- **Memory Management**: Efficient memory usage for large files
- **Parallel Processing**: Multiple files processed concurrently
### Advanced Features
#### Custom Comment Templates
```javascript
const customTemplates = {
function: '// Function: {name}\n// Purpose: {description}',
class: '// Class: {name}\n// Description: {description}',
method: '// Method: {name}\n// Returns: {returnType}'
};
const fixer = new FixComments({
templates: customTemplates
});
```
#### Language-Specific Processing
```javascript
const fixer = new FixComments({
languageRules: {
typescript: {
requireTypeAnnotations: true,
strictMode: true
},
javascript: {
allowJSDoc: true,
inferTypes: true
}
}
});
```
### Troubleshooting
#### Common Issues
1. **Parsing Errors**: Ensure files have valid syntax
2. **Permission Issues**: Check file write permissions
3. **Encoding Problems**: Specify correct file encoding
4. **Memory Issues**: Process large projects in batches
#### Debug Mode
```bash
DEBUG=fix-comments npx @chahuadev/fix-comments@beta . --verbose
```
---
For more examples and advanced usage, see the [project repository](https://github.com/chahuadev/chahuadev-fix-comments). |