VeeStackDocumentation

Quick Start Guide

Get your first security scan in 5 minutes

1Install the CLI

npm install -g @vee_stack/cli

Requires Node.js 18 or higher.

2Initialize Your Project

cd your-project && veestack init

This creates veestack.config.json and .veestackignore.

3Run Your First Scan

veestack scan

Generates a local security report.

4View Dashboard (Optional)

veestack login && veestack upload

Uploads metadata to your dashboard at app.veestack.com.

🔒 Enterprise: Local-Only Mode

For maximum privacy, run scans without uploading any code:

veestack scan --local-only --output html

Your code never leaves your machine. Only anonymized metadata is processed.

Next Steps