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 🙏

© 2024 – Pkg Stats / Ryan Hefner

npm-proxy-cache

v2.2.0

Published

HTTP/HTTPS caching proxy for work with `npm` utility / registry

Downloads

124

Readme

npm-proxy-cache Build Status

Greenkeeper badge

HTTP/HTTPS caching proxy for work with npm utility. This is not a reverse proxy.

You may find this tool useful if you are experiencing huge network lags / latency problems. Other solutions such as local CoachDB mirror of npm registry require much more work and maintenance.

Installation

npm

npm install npm-proxy-cache -g

Docker

The docker image of this repository is not hosted on Docker Hub (yet)

To run npm-proxy-cache as a Docker container, you need to build the image first:

docker build -t npm-proxy-cache .

After building the image successfully, you can run the Docker container. To pass parameters, simply append them to the docker run command, like so:

docker run -t npm-proxy-cache --port 8080 --host 0.0.0.0 --expired

Usage

First of all, you need to configure npm to use proxy

npm config set proxy http://localhost:8080/
npm config set https-proxy http://localhost:8080/
npm config set strict-ssl false

Another way is to use it explicitly with npm install command, like this:

npm --proxy http://localhost:8080 --https-proxy http://localhost:8080 --strict-ssl false install

The strict-ssl false option is required since it's impossible to auth cached response from https proxy, which actully acts as a MITM (man in the middle). All other than GET requests are not cached, so you still be able to publish your modules to npm registry without switching cache on and off.

Once you have npm configured, start the proxy:

npm-proxy-cache

By default proxy starts on localhost:8080 and have cache ttl 30 mins. These values might be overriden using command line options:

npm-proxy-cache --help

  Usage: npm-proxy-cache [options]

  Options:

    -h, --host [name]       Hostname [localhost]
    -p, --port [number]     An integer argument [8080]
    -t, --ttl [seconds]     Cache lifetime in seconds [1800]
    -s, --storage [path]    Storage path
    -x, --proxy             HTTP proxy to be used, e.g. http://user:[email protected]:8888/
    -e, --expired           Use expired cache when npm registry unavailable
    -f, --friendly-names    Use actual file names instead of hashes in the cache
    -v, --verbose           Verbose mode
    -n, --metadata-excluded Exclude metadata requests from caching
    -l, --log-path          Log path
    -m, --internal-port     HTTPs port to use for internal proxying "MITM" server (necessary for running on Windows systems)
    --help                  This help

Why can't I use the built-in npm cache?

Well, for some reason npm cache works not as expected and cache hits are low. Additionally, CI servers which run on multiply machines may utilize one cache storage which you can provide via caching proxy.

Docker

To use a docker container, run:

curl -sSL https://get.docker.com/ | sh
docker pull folha/npm-proxy-cache
docker run --restart=always --net=host -p 8080:8080 -t folha/npm-proxy-cache --name=npm-proxy-cache
npm --proxy http://npm-proxy-cache:8080 --https-proxy http://npm-proxy-cache:8080 --strict-ssl false install

Limitations

  • Works only with node 6 and above.

Any feedback is welcome