booty-cache

0.0.1 • Public • Published

booty

Like a pirate's treasure booty, not the dirty kind of booty.

What it does

Dynamically cache routes in express!

npm install "git://github.com/balderdashy/booty.git"

How to use with Express

cacheRoute = require('booty')
 
app.get('/', cacheRoute(60*60), function(req, res) {
    res.send('This route is now cached for 3600 seconds!')
})

How to use with Sails

cacheRoute = require('booty')
 
var Controller = {
    route: cacheRoute(60*60)(function(req, res) {
        res.send('This route is now cached for 3600 seconds!')
    })
}

Readme

Keywords

none

Package Sidebar

Install

npm i booty-cache

Weekly Downloads

2

Version

0.0.1

License

MIT

Last publish

Collaborators

  • balderdashy