itemsjs icon indicating copy to clipboard operation
itemsjs copied to clipboard

Extremely fast faceted search engine in JavaScript - lightweight, flexible, and simple to use

Results 5 itemsjs issues
Sort by recently updated
recently updated
newest added

to reproduce: ``` const data = [{ "boolean": true, "string": "true" }] const itemsjs = require('itemsjs')(data, { aggregations: { boolean: {}, string: {} } }); const aggs = itemsjs.search({ filters:...

enhancement

Is there a way to persist an existing itemjs index and reload it again for search later? This would be a great enhancement. If I see it correctly, the index...

Is it possible when sorting to have the null values come last? Right now, they come first.

Please see images below. We can't figure out why selection drop down boxes don't filter the search list, but checkboxes do. ![facet1](https://github.com/itemsapi/itemsjs/assets/51751730/c6be00f9-6af3-41e2-bfe2-063d093b11f3) ![facet2](https://github.com/itemsapi/itemsjs/assets/51751730/ee0167b0-b808-417d-aeb2-dd2e032231e2)

According to the [documented examples](https://github.com/itemsapi/itemsjs/blob/master/docs/minisearch-integration.md), I should be able to filter the results of method `search` by specifying argument `ids`, with `native_search_enabled=false`, but no such argument exists in SearchOptions? Version...