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

devpops_ext

v1.0.8

Published

Chrome Dev Tools Extension for proxying requests and terminal access, credits to Yez extension and npm packages

Readme

Chrome Dev Tools Extension for Proxying requests & Accessing Terminal

This chrome dev tool extension is a combination of two open sourced exts a) NodeJs app that kills the terminal and act as a task runner & b) A Chrome proxy that routes all your browser traffic from chrome over to an IP address or hostname of your preference. It's a powerful tool to have if you need to route traffic over to localhost reverse proxies for testing and running browser automation taks all from within a dev tools extension.

Installation

  • npm install -g devpops_ext This is the NodeJS app that the extension speaks with to pass the terminal commands you type inside the extension
  • Download this repo as a zip file and unzip it

if you get the error below /usr/local/lib/node_modules/devpops_ext/node_modules/socket.io/lib/store.js:35 Store.prototype.proto = EventEmitter.prototype; ^ Then please visit the "/usr/local/lib/node_modules/devpops_ext/node_modules/socket.io/lib/" folder via terminal and run the command below. This will replace "EventEmitter" usage with the "require event", use of EventEmitter has been deprecated since Node 7

  • sudo find . -type f -name '*.js' -exec sed -i '' -e "s/process.EventEmitter/require('events')/g" {} +

Usage

  1. Install the Yez! module by running npm install -g yez ornpm install -g https://registry.npmjs.org/yez/-/yez-2.0.1.tgz.

  2. Run yez in your terminal window. You should see the following msg

mymacbook:~ username$ yez info - socket.io started Yez! back-end is running. Install the Chrome extension or open http://localhost:9173

  1. Open Chrome browser and type in chrome://extensions, turn on developer mode (top right hand corner) and then click on "load unpacked", choose the "chrome" folder within the unzipped akamai-devops folder and click select.

  2. Open Chrome's DevTools and find the Devpops tab

(Keep in mind that when you run the backend of Yez! the app is available at http://localhost:9173/)

Screenshots

I: Landing Page first

II: Multiple way to configure proxy settings Second

III: Use terminal right inside your Chrome browser Third

IV: Setup Automated browser test tasks within the extension Fourth