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

jscpd

v5.0.11

Published

Copy/paste detector for programming source code — Rust-based (v5.x). For the TypeScript version, see [email protected].

Readme

jscpd — Copy/Paste Detector

jscpd v5.x is the Rust-based implementation. For the TypeScript/Node.js version, see jscpd v4.x.

Fast copy/paste detector for programming source code. 24-37x faster than the Node.js version. Supports 223 language formats, git blame, and 13 output reporters.

Packages

| Package | Version | Installs | When to use | |---------|---------|----------|-------------| | jscpd | 4.x | jscpd | Need the Node.js API, LevelDB/Redis stores, or programmatic usage | | jscpd | 5.x | jscpd and cpd | Maximum speed, CLI-only usage, or git blame | | cpd | 5.x | cpd | Same binary as jscpd 5.x, shorter command name only |

Both jscpd v5 and cpd v5 install the same Rust binary. Installing jscpd@5 gives you both jscpd and cpd commands.

Performance

| Codebase | Files | Size | jscpd v4 (Node.js) | jscpd v5 (Rust) | Speedup | |----------|-------|------|--------------------|-----------------|---------| | Multi-format fixtures | 548 | 1.5 MB | 1.03 s | 0.03 s | 34.3× | | Svelte source | 9K | 38 MB | 15.80 s | 0.43 s | 36.9× | | CopilotKit | 17K | 159 MB | 82.89 s | 3.44 s | 24.1× |

See performance-comparison.md for full methodology and raw data.

Install

# npm — installs both jscpd and cpd commands
npm install -g jscpd

# or install just the cpd command
npm install -g cpd

# crates.io — installs both jscpd and cpd binaries
cargo install jscpd

# Nix — run without installing
nix run github:kucherenko/jscpd -- /path/to/code

# Nix — install permanently
nix profile install github:kucherenko/jscpd

# Homebrew (macOS/Linux)
brew install jscpd

Prebuilt binaries for 6 platforms — no Node.js runtime required.

Quick Start

# Scan current directory
jscpd .
cpd .           # same command, shorter name

# Git blame with side-by-side author comparison
jscpd . --blame --reporters console-full

# Output to JSON + HTML
jscpd . --reporters json,html

# Fail CI if duplication exceeds threshold
jscpd . --threshold 10

# List all supported formats
jscpd --list

Options

| Flag | Short | Default | Description | |------|-------|---------|-------------| | --min-tokens | -k | 50 | Minimum tokens to consider a duplicate | | --min-lines | -l | 5 | Minimum lines to consider a duplicate | | --max-lines | -x | — | Maximum lines per duplicate block | | --mode | -m | mild | Detection mode: mild, weak, strict | | --skip-comments | — | — | Alias for --mode weak | | --format | -f | all | Comma-separated formats to check | | --ignore-pattern | -i | — | Glob patterns to ignore | | --reporters | -r | console | Comma-separated reporters | | --output | -o | report | Output directory for file reporters | | --config | -c | — | Path to config file (.jscpd.json) | | --threshold | -t | — | Max duplication % before exit 1 | | --blame | -b | — | Enrich clones with git blame data | | --skip-local | — | — | Skip clones within the same directory | | --silent | -s | — | Suppress console output | | --list | — | — | List all supported formats and exit |

For the full options list, see docs/rust.md.

Reporters

| Reporter | Output | |----------|--------| | console | Clone list + statistics table (default) | | console-full | Source snippets + blame comparison | | json | report/jscpd-report.json | | html | report/jscpd-report.html | | sarif | report/jscpd-report.sarif (GitHub Code Scanning) | | ai | Token-efficient output for LLM pipelines | | badge | report/jscpd-badge.svg + report/jscpd-lines-badge.svg |

Plus: xml, csv, markdown, xcode, threshold, silent.

Config File

Create .jscpd.json in your project root:

{
  "minTokens": 30,
  "minLines": 3,
  "format": ["javascript", "typescript", "python"],
  "ignorePattern": ["node_modules", "dist", "*.min.js"],
  "reporters": ["console", "json"],
  "output": "report",
  "threshold": 5,
  "blame": false
}

Cross-Format Detection

Vue SFC (.vue), Svelte (.svelte), Astro (.astro), and Markdown files are tokenized per-block, enabling duplicate detection across file types.

Known Differences from jscpd v4

| Feature | jscpd v4 (Node.js) | jscpd v5 (Rust) | |---------|--------------------|-------------------| | --store (LevelDB) | Persistent store for large repos | Not supported | | Programming API | jscpd() Promise API, detectClones() | Rust crate API; no Node.js API | | --reporters | All v4 reporters | All except full (use console-full) |

See docs/rust.md for the full differences table and detailed documentation.

License

MIT