0.0.0 • Published 9 years ago

kakku-multi-store v0.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
9 years ago

kakku-multi-store

Build Status Coverage Status

An multi-backed in memory store for kakku.

Usage

var Kakku = require("kakku").Kakku;
var MultiStore = require("kakku-multi-store").MultiStore;

var kakku = new Kakku({
    ...
    store: new MultiStore({ stores: [
        new LruCacheStore(...),
        new RedisStore(...),
    ] }),
});

Development

Development is pretty straightforward, it's all JS and the standard node stuff works:

To install dependencies:

$ npm install

To run the tests:

$ npm test

Then just make your awesome feature and a PR for it. Don't forget to file an issue first, or start with an empty PR so others can see what you're doing and discuss it so there's a a minimal amount of wasted effort.