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 🙏

© 2026 – Pkg Stats / Ryan Hefner

vulncheck

v1.0.2

Published

``` ██╗ ██╗██╗ ██╗██╗ ███╗ ██╗ ██████╗██╗ ██╗███████╗ ██████╗██╗ ██╗ ██║ ██║██║ ██║██║ ████╗ ██║██╔════╝██║ ██║██╔════╝██╔════╝██║ ██╔╝ ██║ ██║██║ ██║██║ ██╔██╗ ██║██║ ███████║█████╗ ██║ █████╔╝ ╚██╗ ██╔╝██║ ██║██

Readme

🔍 VulnCheck

██╗   ██╗██╗   ██╗██╗     ███╗   ██╗ ██████╗██╗  ██╗███████╗ ██████╗██╗  ██╗
██║   ██║██║   ██║██║     ████╗  ██║██╔════╝██║  ██║██╔════╝██╔════╝██║ ██╔╝
██║   ██║██║   ██║██║     ██╔██╗ ██║██║     ███████║█████╗  ██║     █████╔╝ 
╚██╗ ██╔╝██║   ██║██║     ██║╚██╗██║██║     ██╔══██║██╔══╝  ██║     ██╔═██╗ 
 ╚████╔╝ ╚██████╔╝███████╗██║ ╚████║╚██████╗██║  ██║███████╗╚██████╗██║  ██╗
  ╚═══╝   ╚═════╝ ╚══════╝╚═╝  ╚═══╝ ╚═════╝╚═╝  ╚═╝╚══════╝ ╚═════╝╚═╝  ╚═╝

Scan your entire codebase for security vulnerabilities using Google Gemini AI.


✨ Features

  • 🤖 AI-Powered — Uses Google Gemini 1.5 Flash to deeply analyze code
  • 🎨 Beautiful CLI — Colored output, progress bar, ASCII art banner
  • 📄 Markdown Report — Auto-generates a detailed .md vulnerability report
  • 🔍 Multi-language — JS, TS, Python, Go, Java, PHP, Ruby, Rust, C/C++, and more
  • Live Feedback — Shows bugs as they're found, file-by-file
  • 🎯 Severity Filter — Focus on critical/high issues only if needed
  • 🛡️ Detects: SQLi, XSS, hardcoded secrets, path traversal, IDOR, RCE, and more

🚀 Install

# Clone and install globally
git clone https://github.com/W41T3D3V1L/vulncheck
cd vulncheck
npm install

# Or run directly
node src/index.js --repo <path>

🔑 Setup

Get a free Gemini API key from Google AI Studio then:

export GEMINI_API_KEY=your_key_here

📖 Usage

# Basic scan
vulncheck --repo ./my-project

# Scan with custom output file
vulncheck --repo ./my-project --output security-audit.md

# Only show high and critical issues
vulncheck --repo ./my-project --severity high

# Scan only JS and TS files
vulncheck --repo ./my-project --extensions .js,.ts

# Scan more files (default: 50)
vulncheck --repo ./my-project --max-files 100

# Use subcommand style
vulncheck scan --repo ./my-project --api-key YOUR_KEY

📊 Example Output

  ⚡ Bugs found in src/auth/login.js

  💀  [ CRITICAL ] SQL Injection
       File: src/auth/login.js:42
       Info: User input directly concatenated into SQL query
       Fix:  Use parameterized queries or an ORM

  🔴  [ HIGH ] Hardcoded Secret
       File: src/auth/login.js:8
       Info: JWT secret key hardcoded as string literal
       Fix:  Move to environment variable via process.env

📁 Report Format

The generated .md report includes:

  • Executive summary with severity counts
  • Critical/High issues highlighted first
  • Issues grouped by file
  • Remediation recommendations

🛠️ Options

| Flag | Description | Default | |------|-------------|---------| | --repo <path> | Path to scan | required | | --api-key <key> | Gemini API key | $GEMINI_API_KEY | | --output <file> | Report filename | vulncheck-report.md | | --severity <level> | Min severity: low\|medium\|high\|critical | low | | --extensions <list> | File extensions to scan | .js,.ts,.py,... | | --max-files <n> | Max files to scan | 50 |


Made by M33N4N