A small web app that takes a project (zip or single file), sends it through an LLM, and gives you back a code review or summary. Built it for myself to skim through unfamiliar codebases faster.
Express on the back, vanilla JS on the front. Nothing fancy.
- Node.js / Express
- Multer for uploads, unzipper for archives
- OpenAI API (drop your key in
.env)
npm install
echo "OPENAI_API_KEY=sk-..." > .env
node api/server.jsThen open http://localhost:3000.
Side project. Works, but rough around the edges. PRs and ideas welcome.