1
2
3
4
5
6
7
8
9
10
11
12
13
import lunr from 'https://cdn.skypack.dev/lunr';
const idx = lunr(function () {
this.field('content');
this.add({ id: 1, content: 'Banana Apples and Oranges' });
this.add({ id: 2, content: 'Cats Dogs and Bears' });
});
let results = idx.search('pear');
console.log(JSON.stringify(results));
results = idx.search('apple');
console.log(JSON.stringify(results));