0.1.1 • Published 8 years ago

pouchdb-lunr v0.1.1

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

pouchdb-lunr

Some PouchDB sugar around lunr.js

Installation

npm install pouchdb pouchdb-lunr

Usage

import PouchDB from 'pouchdb';
import LunrPlugin from 'pouchdb-lunr';
PouchDB.plugin(LunrPlugin);

const db = new PouchDB('mydb');

db.lunr('fruits', function() {
  this.field('name');
}, function(idx, doc) {
  if (doc.type === 'fruit') {
    idx.add({
      id: doc._id,
      name: doc.name
    });
  }
});

db.lunrSearch('fruits', 'banana').then(function(res) {
  //res has same properties as db.allDocs()
});

Author

Niklas Närhinen

License

MIT License

0.1.1

8 years ago

0.1.0

8 years ago