akralj / feathers-nedb-fuzzy-search

Add fuzzy search to NeDB service.find queries

Home Page:https://www.npmjs.com/package/feathers-nedb-fuzzy-search

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

npm version Build Status

feathers-nedb-fuzzy-search

Add fuzzy $search to NeDB service.find queries.

Install

npm install feathers-nedb-fuzzy-search

Usage

const search = require('feathers-nedb-fuzzy-search')
const messages = app.service('messages')

// enable for message service, may use app.hooks too
messages.hooks({
  before: {
    find: search()
  }
})

messages.find({
  query: {
    $search: 'some string to search for'
  }
})

Options

feathers-nedb-fuzzy-search take two options:

search({
  fields: ['search.this.path', 'this.path.too', 'title'],
  deep: true
})
  • fields - Specify which fields to search.
  • deep- If true and fields is undefined, will search deep in objects.

Complete example

const feathers = require('feathers')
const hooks = require('feathers-hooks')
const NeDB = require('nedb')
const service = require('feathers-nedb')
const search = require('feathers-nedb-fuzzy-search')

const Model = new NeDB({
  filename: './example.db',
  autoload: true
})

const app = feathers()
app.configure(hooks())
app.use('/test', service({ Model }))
app.hooks({
  before: {
    find: search({
      // if omitted, then it will search all properties of documents
      fields: ['title', 'description']
    })
  }
})

// you need node v7 or above for async / await syntax
async function testDatabase () {
  let service = app.service('test')
  await service.create([
    { 'title': 'asdf' },
    { 'title': 'qwerty' },
    { 'title': 'zxcvb' },
    { 'title': 'hello world' },
    { 'title': 'world around' },
    { 'title': 'cats are awesome' },
  ])

  let res = await service.find({ query: { $search: 'world' } })

  console.log(res)
  // [ { title: 'world around', _id: '1RDM5BJWX4DWr1Jg' },
  //   { title: 'hello world', _id: 'dX4bpdM1IsAFkAZd' } ]
}

testDatabase()
  .catch(e => console.error(e))

Development

npm test  # runs mocha, see test.js

License

MIT © 2017 Arve Seljebu

About

Add fuzzy search to NeDB service.find queries

https://www.npmjs.com/package/feathers-nedb-fuzzy-search


Languages

Language:JavaScript 100.0%