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

turbolint-cli

v0.1.15

Published

TurboLint is a fast Rust CLI for JavaScript and TypeScript linting.

Readme

TurboLint

npm version funding

TurboLint is a fast Rust CLI for JavaScript and TypeScript linting.

Install

npm install turbolint-cli

Then run the published binary:

turbolint ./src

What it does

  • Recursively scans .js, .jsx, .ts, and .tsx files
  • Ignores node_modules and .git
  • Flags eval(), var, and console.log()
  • Exits 1 when violations are found, 0 when the tree is clean

Build the native binary

cargo build --release

Run locally

./target/release/turbolint ./src

The npm package ships the same command name and falls back to a local Cargo build if a native binary is not already present.

Need a fast second opinion?

Buy a $1 TurboLint Express Audit for one JavaScript or TypeScript file. You receive the findings with line, column, rule, and one concrete fix recommendation. Start the audit in Stripe.

Flags

  • --config PATH: load rule toggles and extra ignore patterns from a JSON file
  • --ignore-file PATH: load extra ignore globs from a text file
  • --json: emit structured JSON output with scan stats and violations
  • --fix: apply safe autofixes for no-var by rewriting var to let

GitHub Action

Docs: https://turbolint.ideatr.dev/github-action/

name: TurboLint
on: [push, pull_request]

jobs:
  turbolint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: arjunkshah/[email protected]
        with:
          path: ./src

Website

The repo also ships a lightweight public site in site/. The live hostname is turbolint.ideatr.dev; GitLab hosts the public source and docs, while Vercel serves the live site.

Paid Microservices

TurboLint is free and open source. Paid support starts at $1 through a focused Express Audit, with additional repo review and agent services available when you need them.

Live paid surface:

  • $1 Express Audit for one JS/TS file
  • repo-level configuration reviews
  • live NEAR Agent Market services
  • direct USDC or ETH support on Base, Polygon, or Ethereum
https://buy.stripe.com/6oU6oJfFS2jqcGReovgMw01
https://turbolint.ideatr.dev/#support

After direct wallet payment, email the repo URL, request, sending wallet, and transaction hash from the support page.

Architecture

  • Streaming directory traversal: paths are pushed through a bounded channel, avoiding full-tree materialization.
  • Fixed worker pool: worker count is bounded by logical CPU availability.
  • Memory-mapped file reads: source files are mapped read-only and parsed without copying the entire file into a new buffer.
  • Parallel directory crawling: traversal uses the ignore crate's parallel walker instead of a single recursive loop.
  • Per-file memory lifetime: source text, line index, Oxc allocator, AST, and rule state are dropped immediately after each file is processed.
  • Bounded queues: the path and result queues provide backpressure under very large repositories to keep memory usage predictable.
  • Single-pass file counting: the directory walker records scanned files while streaming paths to workers.

Release

Install it from npm with:

npm install turbolint-cli

That gives you the same turbolint command used by the native build.

Deployment

  • Public source repo: gitlab.com/arjunkshah/turbolint
  • Live site: turbolint.ideatr.dev
  • Docs: site/docs/