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

browserify-persist-redis

v1.0.0

Published

Cache intermediate browserify transforms in redis for faster builds.

Readme

browserify-persist-redis

browserify-persist-redis will cache intermediate browserify transforms in redis, leading to much faster browserify builds.

After browserify processes all the transforms on a file, browserify-persist-redis will store the result in redis. The next time browserify needs to include that file in a bundle it can pull the previously calculated output from redis instead of reprocessing the file.

This is useful on a single machine, but it is especially useful in a CI environment where many different build servers can share this cache: A file will get processed on one server and cached in redis, and then every other server can take advantage of the cached result.

Requirements

redis >= 2.6.12

browserify >= 12.0.0 (because we need module-deps >= 4.1.0)

Install

npm install browserify-persist-redis

Getting Started

const browserify = require('browserify');
const bpr = require('browserify-persist-redis')();

const bundle = browserify({
  persistentCache: bpr
});

bundle.add('./browser/main.js');
bundle.bundle().pipe(process.stdout);

Options

An options object may be passed to browserify-persist-redis to modify its behavior.

const options = {
  browserifyHash: require('browserify/package.json').version,
  ttl: 86400 * 28
};

const bpr = require('browserify-persist-redis')(options);

Valid options are:

  • browserifyHash - This should uniquely identify the browserify configuration. If browserify is modified, such as a version upgrade, or different transforms are applied, then the cached output for a file should no longer be valid. This provides a way to distinguish between different configurations of browserify so that we can recalculate the output. This can be a string or an object. The default value is 'bfr'. A good method is to pass an object of the versions of the transforms you are using:

    const browserifyHash = {
      browserify: require('browserify/package.json').version,
      babelify: require('babelify/package.json').version,
      reactify: require('reactify/package.json').version
    };

    when one of your transforms changes, so will browserifyHash, and the the old cached results will not be used.

  • redis - Options related to the redis instance. This is passed directly to the ioredis constructor, see all options here. Some defaults are:

    • host - The default value is 'localhost.
    • port - The default value is '6379'.
    • keyPrefix - A namespace for keys created by browserify-persist-redis. The default is 'bpr'.
  • ttl - How long (in seconds) a cached result should stay in redis before being automatically deleted. This expiration is refreshed every time a cached result is used, so entries will only be deleted after going this many seconds without being used. The default is two weeks (86400 * 14).

License

MIT