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

output-cache

v1.0.0

Published

A Node JS module to help with caching HTTP responses

Downloads

12

Readme

output-cache

Output-cache is a NodeJS module that can be used to cache HTTP responses in memory on the server.

  • Perfect for caching your RESTful endpoints
  • Similar functionality to .NET OutputCache attribute
  • Configurable and easy to invalidate entries in the cache
  • 100% unit test coverage

Build Status

Installation

npm install output-cache

Usage

Disclaimer: The output-cache module defines a cache on a per-route basis, and therefore, you'll most likely need to have some sort of routing framework in place. The caching needs to happen after routing. I recommend using this in conjunction with a module like express or restify.

You can create a new output cache instance like so:

var OutputCache = require('output-cache');
var outputCache = new OutputCache(options);

The constructor takes an options object that can have the following properties:

  • maxCacheSizePerRoute (default: 50) - The maximum number of items to keep in the cache on a per route basis
  • removeOldEntriesWhenFull (default: false) - If set to true and the cache is full, it will always keep the newest entries and automatically remove the oldest ones
  • parametersPropertyName (default: 'params') - Modules like express and restify assign route paramters to a 'params' property on the request object. If you are using a module that stores route parameters on a different named property on the request object, use this to configure where parameters are stored.
  • headersPropertyName (default: 'headers') - Modules like express and restify assign request header values to a 'headers' property on the request object. If you are using a module that stores request header values on a different named property on the request object, use this to configure where request header values are stored.

Note: these are also available as public properties.

The cache method is used to define the route and options for caching the response to a given endpoint:

cache(route:String, options:Object, routeHandler:Function)
  • route - required, the route that the cached response will be associated to
  • options - optional, the options to use for caching; see below for more deatils
  • routeHandler - required, the logic that will be run when there is nothing in the cache for the request (your normal route handling logic)
  • returns a handle to a function that is used to intercept the sending of responses (you really don't need to care much about this :))

Caching Options:

  • location (default: 'none') - tells the server what cache control headers should be sent along with the response and if responses should be cached on the server. Valid locations are:
    • 'none' - Not cached on server, Cache-Control: none
    • 'server - Cached on server, Cache-Control: none
    • 'downstream' - Not cached on server, Cache-Control: public
    • 'any' - Cached on server, Cache-Control: public
    • 'client' - Not cached on server, Cache-Control: private
    • 'serverAndClient' - Cached on server, Cache-Control: private
  • varyByParam (default: []) - a collection of the names of parameters to vary the cache on
  • varyByHeader (default: []) - a collections of the names of headers to vary the cache on
  • durationSeconds (default: 1) - the number of seconds to cache the response
  • useSlidingExpiration (default: false) - tells the module whether or not the entry's cache duration will be reset on a cache hit

The invalidate method is used to remove entries from the cache:

invalidate(route:String, parameters:Object, headers:Object)
  • route - required, the route that the cached response will be associated to
  • parameters - required, an object containing the names and values of the parameters of the request to invalidate
  • headers - required, an object containing the names and values of the headers of the request to invalidate

Here is an example:

var app = require('express').createServer(),
	OutputCache = require('output-cache'),
	outputCache = new OutputCache({ maxCacheSizePerRoute: 10, removeOldEntriesWhenFull: true}),
	cacheOptions = {
		location: outputCache.cacheLocation.SERVER,
		varyByParam: ['userId'],
		durationSeconds: 60
	};

app.get('/users/:userId', outputCache.cache('/users/:userId', cacheOptions, function(req, res, next) {
	if (req.params.userId < 1) {
		res.send(404, 'Not Found');
		return;
	}
	res.send(200, 'hello user:' + req.params.userId);
}));

app.listen(3000);

License

The MIT License (MIT) Copyright (c) 2012 Mac Angell

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.