DEV Community

arik mozharovsky
arik mozharovsky

Posted on

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

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
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

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

Feedback welcome — what features would you want to see?

Top comments (0)