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

cache-client

v0.0.22

Published

An easy to use cache client that allows use for memcached, redis, or lru-cache

Readme

cache-client

This is a caching api that allows you to connect to redis, memcached, or lru-cache. This utilizes the npm modules lru-cache, redis, or memcached. I have required them as dependencies so that they are installed with cache-client.

I started this project so that I could have an easy way to interact with each cache mechanism, using a single api. This made it easy to use between multiple environments and multiple projects. Now Supports all three cache stores. Added TTL support for Redis and Memcached, and LRU-cache.

The TTL for LRU is a bit experimental, I haven't tested it yet with the other lru-cache options.

Added in prefix support: config.prefix = "your_prefix_here"; will prefix all keys no matter the store.

Initialization

config = {store: "redis", port:6379, host:"127.0.0.1", opts:{}, auth:"password"};
config = {store: "memory", opts:{}};
config = {store: "memcached", host:"localhost:11211", opts:{}};
var cacheClient = require("cache-client");
cacheClient.setup(config);

Usage

Normal Methods

cacheClient.read("foo", function(result)
{
	//do something here
});

cacheClient.write("foo", "bar");

Advanced Methods You have access to the underlying modules(redis,memcached, lru) by calling cacheClient.client.method();

cacheClient.client.keys();
cacheClient.client.values();

cacheClient.client.some_redis_method();
cacheClient.client.some_memcached_method();

API

  • write(key,value,ttl) if ttl is not provided, then it will default to 0, which will cache the item until it is cleared.

  • read(key, callback(result))

  • remove(key)

  • clear() -> must be careful with this, this will flush the entire cache, so if you are using the same store for both sessions and cache or multiple apps use the same store, this will clear everything.