{"id":21838726,"url":"https://github.com/thatbeautifuldream/todo-fixme-scanner","last_synced_at":"2026-01-27T09:17:49.199Z","repository":{"id":259625439,"uuid":"879074483","full_name":"thatbeautifuldream/todo-fixme-scanner","owner":"thatbeautifuldream","description":"Scan for TODO and FIXME comments in your project files!","archived":false,"fork":false,"pushed_at":"2024-10-27T06:44:11.000Z","size":12,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-31T15:53:07.137Z","etag":null,"topics":["cli","fixme","scanner","todo"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/todo-fixme-scanner","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thatbeautifuldream.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-10-26T22:36:28.000Z","updated_at":"2024-10-29T16:56:45.000Z","dependencies_parsed_at":"2024-10-26T23:59:20.793Z","dependency_job_id":"7e464448-d95e-40f4-bdda-c595c4bc7667","html_url":"https://github.com/thatbeautifuldream/todo-fixme-scanner","commit_stats":null,"previous_names":["thatbeautifuldream/todo-scanner"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thatbeautifuldream/todo-fixme-scanner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thatbeautifuldream%2Ftodo-fixme-scanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thatbeautifuldream%2Ftodo-fixme-scanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thatbeautifuldream%2Ftodo-fixme-scanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thatbeautifuldream%2Ftodo-fixme-scanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thatbeautifuldream","download_url":"https://codeload.github.com/thatbeautifuldream/todo-fixme-scanner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thatbeautifuldream%2Ftodo-fixme-scanner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28810475,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T07:41:26.337Z","status":"ssl_error","status_checked_at":"2026-01-27T07:41:08.776Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","fixme","scanner","todo"],"created_at":"2024-11-27T21:13:57.123Z","updated_at":"2026-01-27T09:17:49.184Z","avatar_url":"https://github.com/thatbeautifuldream.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# todo-fixme-scanner\n\nA command-line tool to scan your project for TODO and FIXME comments, helping you keep track of pending tasks and issues in your codebase.\n\n## Features\n\n- Recursively scans directories for TODO and FIXME comments\n- Supports multiple file types including JavaScript, TypeScript, Markdown, HTML, CSS, and more\n- Excludes common directories like node_modules, .git, and build folders\n- Flexible output formats: console, JSON, and CSV\n- Easy to use with customizable options\n\n## Installation\n\nInstall the package globally using npm:\n\n```bash\nnpm install -g todo-fixme-scanner\n```\n\nOr use it directly with npx:\n\n```bash\nnpx todo-fixme-scanner@latest\n```\n\n## Usage\n\n### Basic Usage\n\nTo scan the current directory and display results in the console:\n\n```bash\ntodo-fixme-scanner\n```\n\n### Custom Directory\n\nTo scan a specific directory:\n\n```bash\ntodo-fixme-scanner --dir /path/to/your/project\n```\n\n### Output Formats\n\nChoose between console (default), JSON, or CSV output:\n\n```bash\ntodo-fixme-scanner --output console\ntodo-fixme-scanner --output json\ntodo-fixme-scanner --output csv\n```\n\n### Command-line Options\n\n- `--dir`, `-d`: Specify the directory to scan (default: current working directory)\n- `--output`, `-o`: Specify the output format: 'console', 'json', or 'csv' (default: console)\n\n## Example Output\n\n### Console Output\n\n```\n🔍 Scanning project for TODO/FIXME comments...\n\nTODO: Implement user authentication\nFile: /path/to/your/project/src/auth.js:15\n\nFIXME: Optimize database query for better performance\nFile: /path/to/your/project/src/database.js:42\n\n✅ Scan complete.\n```\n\n### JSON Output\n\n```json\n[\n  {\n    \"type\": \"TODO\",\n    \"text\": \"Implement user authentication\",\n    \"file\": \"/path/to/your/project/src/auth.js\",\n    \"line\": 15\n  },\n  {\n    \"type\": \"FIXME\",\n    \"text\": \"Optimize database query for better performance\",\n    \"file\": \"/path/to/your/project/src/database.js\",\n    \"line\": 42\n  }\n]\n```\n\n### CSV Output\n\n```csv\nType,Text,File,Line\nTODO,\"Implement user authentication\",/path/to/your/project/src/auth.js,15\nFIXME,\"Optimize database query for better performance\",/path/to/your/project/src/database.js,42\n```\n\n## Supported File Types\n\nThe scanner supports the following file extensions:\n\n- JavaScript: .js, .jsx\n- TypeScript: .ts, .tsx\n- Markdown: .md, .mdx\n- HTML: .html\n- CSS: .css\n- JSON: .json\n- YAML: .yml, .yaml\n- SCSS/SASS: .scss, .sass\n- LESS: .less\n\n## Excluded Directories\n\nThe following directories are automatically excluded from scanning:\n\n- node_modules\n- .next\n- .out\n- .dist\n- .git\n- build\n- .cache\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatbeautifuldream%2Ftodo-fixme-scanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthatbeautifuldream%2Ftodo-fixme-scanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatbeautifuldream%2Ftodo-fixme-scanner/lists"}