A command-line tool to scan your code for TODO and FIXME comments.
npm install remind-me-later





A simple command-line tool to scan your codebase for TODO and FIXME comments ā perfect for tracking unfinished tasks.
- Scans your project files for comments tagged with TODO and FIXME
- Detects both single-line and multi-line comments
- Outputs matches neatly to your terminal, including:
- filename
- line number
- comment preview
- Displays a final summary with the total number of matches found
- Supports the following file types:
- .js
- .ts
- .jsx
- .tsx
- .html
- .css
---
Run directly without installing:
``bash`
npx remind-me-later
Or install locally as a dev dependency:
`bash`
npm install remind-me-later --save-dev
Then, add a script to your package.json.
Recommended: Integrate with your existing dev script like this:
`json`
"scripts": {
"dev": "remind-me-later &&
"remind-me-later": "remind-me-later"
}
Run manually:
`bash`
npm run remind-me-later
Or integrated with your dev workflow:
`bash`
npm run dev
`text
[TODO] src/index.ts:100 ā TODO: Clean up this logic
[FIXME] src/utils/helpers.js:50 ā FIXME: This fails when empty
š” Found 2 comments marked with TODO/FIXME (TODO: 1, FIXME: 1)
š¬ Don't forget to come back to them!
``
Released under the MIT License. Feel free to use, modify, and share!