koa-conditional-get
Conditional GET support for koa
Last updated 11 years ago by jongleberry .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install koa-conditional-get 
SYNC missed versions from official npm registry.

koa-conditional-get

Build Status

Conditional GET support for koa.

Installation

# npm
$ npm install koa-conditional-get
# yarn
$ yarn add koa-conditional-get

Example

const conditional = require('koa-conditional-get');
const etag = require('koa-etag');
const Koa = require('koa');
const app = new Koa();

// use it upstream from etag so
// that they are present
app.use(conditional());

// add etags
app.use(etag());

// respond
app.use(async function(ctx, next){
  await next();

  ctx.body = {
    name: 'tobi',
    species: 'ferret',
    age: 2
  };
})

app.listen(
  3000,
  console.log('listening on port 3000')
)

License

MIT

Current Tags

  • 3.0.0                                ...           latest (4 years ago)
  • 2.0.0                                ...           next (9 years ago)
  • 1.0.4                                ...           v1 (7 years ago)

7 Versions

  • 3.0.0                                ...           4 years ago
  • 1.0.4                                ...           7 years ago
  • 2.0.0                                ...           9 years ago
  • 1.0.3                                ...           10 years ago
  • 1.0.2                                ...           11 years ago
  • 1.0.1                                ...           11 years ago
  • 1.0.0                                ...           11 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (5)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |