npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

veriqa-manual-qa

v2.0.1

Published

VeriQA - Simple 4-Phase Manual QA Tool: Setup → Analyze → Report → Smart regression testing with beautiful PDF reports

Readme

🎯 VeriQA - 4-Phase Manual QA Tool

Simple workflow for smart regression testing: Setup → Analyze → Report

🚀 Quick Installation

# Clone repository
git clone https://github.com/kapilvus/veriqa-manual-qaa.git
cd veriqa-manual-qaa

# Run installation
./install-4phase.sh

# Global usage
veriqa --help

📋 4 Simple Phases

Phase 1: Setup

veriqa setup
  • Scans your project structure
  • Detects frameworks and test files
  • Creates configuration

Phase 2: Project Analysis

veriqa analyze <old-commit> <new-commit>
  • Analyzes Git changes between commits
  • Identifies impact of changes
  • Generates test recommendations

Phase 3: Report Generation

veriqa report
  • Creates beautiful PDF report
  • Lists all regression test cases
  • Provides CSV for testers

🎯 Complete Example

# Setup project (one-time)
cd your-project
veriqa setup

# Analyze changes between commits
veriqa analyze abc123 def456

# Generate reports
veriqa report

🛠️ Available Commands

veriqa setup           # Project setup and scan
veriqa analyze OLD NEW # Commit analysis
veriqa report          # Generate PDF/CSV reports
veriqa uninstall       # Remove VeriQA completely
veriqa --help          # Show help

📦 NPM Scripts

npm run setup          # Quick project setup
npm run analyze        # Interactive analysis
npm run report         # Generate reports
npm run uninstall      # Complete uninstall
npm run install:global # Install globally
npm run uninstall:global # Uninstall globally

🗑️ Uninstall Options

Option 1: Using CLI Command

veriqa uninstall

Option 2: Using NPM Script

npm run uninstall

Option 3: Using Uninstall Script

./uninstall-4phase.sh

Option 4: Manual Cleanup

# Remove global command
npm unlink

# Clean project files
rm -f .veriqa-config.json
rm -rf veriqa-reports/
rm -rf node_modules/

🔧 What Gets Uninstalled

  • ✅ Global veriqa command
  • ✅ Project configuration (.veriqa-config.json)
  • ✅ Generated reports (veriqa-reports/)
  • ⚠️ Optional: node_modules/ and package-lock.json

📊 Output Files

your-project/
├── .veriqa-config.json          # Project configuration
├── veriqa-reports/
│   ├── regression-test-report.pdf  # Main report
│   ├── test-cases.csv              # For testers
│   └── latest-analysis.json        # Analysis data

🎯 Features

  • Smart Framework Detection: Jest, Cypress, Playwright, Mocha, etc.
  • Git Integration: Analyzes commit changes automatically
  • Risk Assessment: High/Medium/Low priority recommendations
  • Beautiful Reports: Professional PDF and CSV exports
  • Easy Uninstall: Multiple uninstall options
  • Zero Configuration: Works out of the box

🔄 Reinstallation

After uninstalling, you can reinstall VeriQA:

git clone https://github.com/kapilvus/veriqa-manual-qaa.git
cd veriqa-manual-qaa
./install-4phase.sh

📋 Requirements

  • Node.js 14+
  • Git (for commit analysis)
  • npm or yarn

🚀 Ready to Use!

VeriQA makes regression testing simple with its 4-phase approach. Install, setup, analyze, and get professional test reports instantly!