3.0.0 • Published 4 years ago

koa-conditional-get v3.0.0

Weekly downloads
72,435
License
MIT
Repository
github
Last release
4 years ago

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

3.0.0

4 years ago

1.0.4

7 years ago

2.0.0

8 years ago

1.0.3

9 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

11 years ago