FuzzySearch icon indicating copy to clipboard operation
FuzzySearch copied to clipboard

:mag: Fast autocomplete suggestion engine using approximate string matching

Results 16 FuzzySearch issues
Sort by recently updated
recently updated
newest added

Hi Jean, Please take a look at the 2 screenshots The first screenshot is showing the search results of "Black Seed and Honey". The second screenshot shows the same data...

Is there a built-in option so that when experimented with it, the density of the number of matching characters ( I mean the highlighted matches in red ) is honored...

Hi Jean In this example: https://github.com/jeancroy/FuzzySearch#scoring-an-item you make no reference to `fullname`. You may want to update the Books object with the "fullname" in it. `Author: "John MiddleName Doe", `...

Is it possible to integrate your library into this UI: https://github.com/farzher/fuzzysort The demo of that repo is here: https://rawgit.com/farzher/fuzzysort/master/test.html His search alg is fast but only good for words. Yours...

Would like to store the Index in local storage once it has built for a lot of entries. Is there a public API for retrieving / storing? And any issues...

Sometime it's good to be a little less fuzzy. - Filters: Prune results using a custom function. Example use case is to filter by a status code. Must be done...

Small word are currently filtered out. With length 2, we filter words like "a, of". However when the small word are number they may be significant. Ie 2, 5, 10,...

I need a way to specify the score result if it fit a minimum, I found that thresh_include not convenient in general, where it depends input length. I think I...

Hi Jean, thank you for Fuzzysearch, it's excellent. My feed contains categories and products, I'm wondering if... 1) I can give a higher score/priority to specific items, so they appear...

Characters that are not present in a search query get highlighted: ## Code ```js import FuzzySearch from 'fz-search'; // v1.0.0 const nodes = [ { value: 'primer' }, ]; const...