Back to articles
deploy-logv: View Vercel & Netlify deployment logs from your terminal

deploy-logv: View Vercel & Netlify deployment logs from your terminal

via Dev.to Webdevarik mozharovsky

When you have multiple deployments failing, clicking through the Vercel/Netlify dashboard gets old fast. I built deploy-logv — a simple CLI that pulls deployment logs directly via API. Install npm i -g deploy-logv export VERCEL_TOKEN = your_token Usage # List recent deployments logv vercel --list # View logs for a specific deployment logv vercel -d dpl_xxxxx # Show only errors logv vercel -d dpl_xxxxx --filter error # Netlify too logv netlify -d abc123 --filter warning Why? Fast — direct API calls, no browser needed Filter — see only errors or warnings Private — runs locally, tokens stay on your machine Simple — one install, set token, done Links GitHub: github.com/arikmozh/logv npm: npmjs.com/package/deploy-logv Landing page: arikmozh.github.io/logv Feedback welcome — what features would you want to see?

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
0 views

Related Articles