🤖 Built an AI-Powered Code Reviewer CLI using Node.js! Point it at any project folder and it automatically: ✅ Scans all your source files ✅ Actually runs your code to catch runtime errors ✅ Reads your git history for context ✅ Streams a full AI code review live in your terminal The interesting engineering part? It uses all 4 child_process methods in Node.js — each for a specific reason: → fork   — offloads heavy file scanning to a separate Node.js worker → execFile — runs your code directly using the node binary (no shell) → exec   — runs git commands to pull repo history → spawn  — streams the Gemini AI response live to terminal No heavy frameworks. Just raw Node.js + Google Gemini API. 🔗 GitHub: https://lnkd.in/gUynjggP #nodejs #javascript #ai #buildinpublic #opensource #gemini

To view or add a comment, sign in

Explore content categories