0.1.0 • Published 7 years ago

koa-elasticsearch v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

koa-elasticsearch

Assign Elasticsearch client to Koa app context

Install

npm install koa-elasticsearch

Usage

// const Koa = require('koa')
// const app = new Koa()

const es = require('koa-elasticsearch')

app.use(es())

app.use(async ctx => {
  const { client } = ctx

  const res = await client
    .search({ q: 'exo' })

  ctx.body = res.hits
})

License

MIT