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

proxy-toggle

v1.0.0

Published

Toggle HTTP(S) proxy env vars per terminal session (bash/zsh), with no_proxy exceptions

Readme

proxy-toggle

Toggle the HTTP(S) proxy in your terminal (bash/zsh) on a per-tab basis, with no_proxy exceptions.

Proxy settings are plain environment variables (http_proxy, https_proxy, no_proxy) that live inside a single shell process. That means proxy-off in one terminal tab does not affect the proxy in any other tab.

Install

npm install -g proxy-toggle
proxy-toggle init --url http://proxy.example.com:8080 --no-proxy "localhost,127.0.0.1,*.internal.example.com"
source ~/.zshrc   # or ~/.bashrc

init creates ~/.proxy-togglerc with your values and appends a managed block to ~/.bashrc and ~/.zshrc (limit to one shell with --shell). Nothing is bundled with the package itself — the proxy URL and exceptions are always supplied by the user.

Usage

After init, these functions are available in every new terminal tab:

proxy-on      # enable the proxy in the current session
proxy-off     # disable the proxy in the current session
proxy-status  # show whether the proxy is on/off in THIS session

There's also proxy-toggle config, a CLI command (not a shell function) that prints the saved URL and no_proxy list from ~/.proxy-togglerc, regardless of whether the proxy is currently enabled in your session. Don't confuse it with proxy-status above — one shows what's configured, the other shows what's active right now.

By default the proxy is enabled automatically when a new session starts (see the proxy-on call at the end of the managed block). To disable autostart:

proxy-toggle init --url ... --no-autostart

init options

| Flag | Description | |---|---| | --url <url> | proxy address, required | | --no-proxy <list> | comma-separated exception list (optional) | | --shell bash\|zsh\|both | which rc files to update (default both) | | --no-autostart | don't enable the proxy automatically on new sessions |

Re-running init is safe — the managed block in the rc file is marked and fully rewritten in place; the rest of the file is left untouched.

Uninstall

proxy-toggle uninstall               # remove the block from bash+zsh rc files, delete ~/.proxy-togglerc
proxy-toggle uninstall --keep-config # remove the block but keep ~/.proxy-togglerc

Check

echo $http_proxy
echo $no_proxy

License

MIT