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

pupdebug

v1.0.34

Published

puppeteer based tester

Downloads

150

Readme

PupDebug

pupdebug is a lightweight command-line utility that leverages Puppeteer, a powerful browser automation library for Node.js, to open a web page in a non-headless Chrome browser and forward console logs for easier debugging. This tool is especially useful for developers needing to inspect client-side JavaScript logs, warnings, and errors directly in the terminal.

Features

  • Opens a specified URL (defaulting to http://localhost:3000).
  • Forwards console messages from the webpage to the terminal.
  • Remains open after loading, allowing for manual inspection and debugging.
  • Ignores HTTPS errors.

Installation

You can run pupdebug directly using npx. There's no need for additional installation steps. Just ensure you have Node.js installed.

npx pupdebug [URL]

Usage

Command-Line Arguments

  • URL (optional): The webpage URL to open. If not provided, the tool defaults to http://localhost:3000.

Example

To load a page on your local server:

npx pupdebug

To load a specific address:

npx pupdebug https://example.com

Functionality

  1. Browser Launch: The script launches a new instance of Chrome using Puppeteer in non-headless mode, allowing you to see what is happening visually.
  2. Console Message Forwarding: It captures console messages (logs, warnings, errors) from the webpage and prints them in the terminal in real time. The messages are categorized based on their types for clarity.
  3. Error Handling: If page navigation fails, an error message is shown and the browser will close.
  4. Debugging: After the page is loaded, the browser remains open, giving you the opportunity to interact with the page and check the developer tools in Chrome.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contribution

Contributions to pupdebug are welcome! If you have suggestions for improvements or features, please feel free to open an issue or submit a pull request.

Troubleshooting

  • Puppeteer Installation Problems: Ensure that you have the necessary permissions and a stable internet connection, as Puppeteer will need to download a specific version of Chromium. You may also refer to the Puppeteer documentation for further assistance with installation issues.

Note

PupDebug automatically redirects console.log to console.error to keep the terminal output clean and focused, showing all log output as errors. If this behavior does not align with your needs, you can modify the script to suit your preferences.

Enjoy debugging your web applications with pupdebug!