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

incognito-dev

v1.3.0

Published

Run your dev server and open localhost in Chrome Incognito mode automatically.

Readme

🕶️ incognito-dev

A lightweight CLI tool that automatically runs your dev server and opens localhost in Google Chrome Incognito mode.


🚀 Installation

npm install -g incognito-dev
# or use without install
npx incognito-dev

💡 Usage

⚠️ No more npm run dev, no more yarn dev! Instead, just run:

incognito-dev

Your development server will automatically open in incognito mode - no more manual clicks or browser switching!

The tool will:

  1. Detect your package manager (npm, yarn, or pnpm)
  2. Run the appropriate dev command (npm run dev, etc.)
  3. Find an available port (e.g., localhost:3000, localhost:3001)
  4. Launch Google Chrome in incognito mode with the local server URL

Before vs After

Before

npm run dev
# Server starts, but you have to manually click the URL or copy-paste it
# ...and it opens in your current browser session with all cookies/history

After

incognito-dev
# Everything happens automatically in incognito mode!

✅ Example Output

    ____                             _ __           _____ __             __ 
   /  _/___  _________  ____ _____  (_) /_____     / ___// /_____ ______/ /_
   / // __ \/ ___/ __ \/ __ `/ __ \/ / __/ __ \    \__ \/ __/ __ `/ ___/ __/
 _/ // / / / /__/ /_/ / /_/ / / / / / /_/ /_/ /   ___/ / /_/ /_/ / /  / /_  
/___/_/ /_/\___/\____/\__, /_/ /_/_/\__/\____/   /____/\__/\__,_/_/   \__/  
                     /____/

   ╔ 🚀 Launch Summary ════════════════════════════╗
   ║                                               ║
   ║   🕶️  Incognito Dev Mode                      ║
   ║                                               ║
   ║   ✔ Dev Server: npm → http://localhost:3000   ║
   ║   ✔ Browser: Google Chrome (Incognito Mode)   ║
   ║                                               ║
   ╚═══════════════════════════════════════════════╝

✨ Features

  • Automatic port detection via detect-port
  • Supports all major package managers: npm, yarn, pnpm
  • Opens Chrome incognito mode — no history, no login
  • Great for testing login pages or clean sessions
  • Works with various dev servers (Vite, Next.js, Create React App, etc.)

📦 Requirements

  • A dev script must exist in your package.json:
"scripts": {
  "dev": "vite"
}

📄 License

MIT


👨‍💻 Author

Made with 🎲 by @clicelee