
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
explainwatch
Advanced tools
Code change timeline generator - captures semantic history and renders documentary-style videos
A code change timeline generator that captures semantic history of a repository and renders documentary-style videos with accurate, per-change explanations.
npm install
npm run build
# Install ffmpeg (Windows)
winget install ffmpeg
# Or with Chocolatey
choco install ffmpeg
# Install Playwright browsers
npx playwright install chromium
# Watch current directory
npx explainwatch start
# Watch specific repository
npx explainwatch start --path /path/to/repo
# With custom output directory
npx explainwatch start --output ./output
# Choose narration style
npx explainwatch start --style diff-first # minimal commentary
npx explainwatch start --style narrated # default, with explanations
npx explainwatch start --style lecture # includes concept explanations
Press Ctrl+C to stop recording. The tool will automatically generate:
timeline.json - Structured event timelinesummary.md - Human-readable summaryvideo.mp4 - Documentary-style videocaptions.srt - Subtitlesnpx explainwatch list
npx explainwatch generate --session <session-id>
npx explainwatch exec npm test
npx explainwatch exec cargo build
src/
├── types/ # Event and segment schemas (Zod)
├── capture/ # File watcher, command capture
├── analysis/ # Symbol indexer, change classifier, segmenter
├── narration/ # Script generator
├── render/ # HTML templates, video renderer
├── storage/ # Event store (JSONL + patches)
├── core/ # Session manager
└── cli.ts # CLI entry point
FileChanged - File modifications with unified diffCommandExecuted - Terminal command with stdout/stderrSymbolGraphChanged - Added/removed/modified symbolsDependencyChanged - Package manager changes{
"version": 1,
"sessionId": "uuid",
"chapters": [
{
"title": "Authentication",
"segments": [
{
"title": "Added AuthMiddleware",
"changeType": "feature",
"narration": "At 03:12, new functionality was added...",
"evidence": [{"claim": "...", "file": "...", "lineRange": [1, 10]}],
"impactedSymbols": [{"name": "AuthMiddleware", "kind": "class"}]
}
]
}
]
}
Human-readable markdown with chapters, segments, and risk flags.
| Style | Description |
|---|---|
diff-first | Minimal - shows diffs with brief commentary |
narrated | Default - includes "what changed" and "why" explanations |
lecture | Educational - pauses to explain concepts (middleware, DI, etc.) |
By default, these are ignored:
node_modules/, .git/, dist/, build/.next/, __pycache__/, .venv/package-lock.json, yarn.lock, etc.)Add custom patterns:
npx explainwatch start --ignore "*.log" --ignore "coverage/"
MIT
FAQs
Code change timeline generator - captures semantic history and renders documentary-style videos
We found that explainwatch demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.