You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having full functionality of Typeset API in one file (typesense.min.js, about 95 kB) is great - when you need this functionality. But when your code works in web browser - all you do is something like this:
typesense = new Typesense.SearchClient(...)
...
typesense.collections('test').documents().search({...}).then(
function (searchResults){
...
searchResults.hits
...
}
I mean - the end-user is not creating collections/documents/synonyms/aliases...
The end-user just searching.
Expected Behavior
There is a need for something like typesense-search.js.
It should contains Typesense.SearchClient and ... basically that's it.
Should have enough functionality to do search in browser.
Should be... I would say... less than 30 kB
stargazer33, boldtrn, slavabogov and prathap-puthran