Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Zincsearch | 15,423 | 10 days ago | 38 | June 16, 2023 | 23 | other | Go | |||
ZincSearch . A lightweight alternative to elasticsearch that requires minimal resources, written in Go. | ||||||||||
Router | 5,130 | 13 | 2 days ago | 15 | March 21, 2022 | 17 | mit | TypeScript | ||
🤖 Fully typesafe Router for React (and friends) w/ built-in caching, 1st class search-param APIs, client-side cache integration and isomorphic rendering. | ||||||||||
Reactivesearch | 4,824 | 92 | 21 | 7 days ago | 406 | August 06, 2023 | 159 | apache-2.0 | JavaScript | |
Search UI components for React and Vue | ||||||||||
Searchkit | 4,650 | 143 | 16 | 12 days ago | 114 | July 15, 2023 | 25 | apache-2.0 | TypeScript | |
Search UI for Elasticsearch & Opensearch. Compatible with Algolia's Instantsearch and Autocomplete components. React & Vue support | ||||||||||
Instantsearch | 3,363 | 241 | 105 | a day ago | 92 | July 25, 2023 | 119 | mit | TypeScript | |
⚡️ Libraries for building performant and instant search experiences with Algolia. Compatible with JavaScript, TypeScript, React and Vue. | ||||||||||
Ueli | 3,145 | 2 days ago | 1 | April 22, 2023 | 361 | mit | TypeScript | |||
Keystroke launcher for Windows and macOS | ||||||||||
Douban | 2,273 | 6 years ago | 5 | mit | Vue | |||||
Awesome douban DEMO created with Vue2.x + Vuex + Vue-router + Superagent | ||||||||||
Slim Select | 899 | 3 | 5 | 2 months ago | 81 | December 21, 2021 | 23 | mit | Vue | |
Slim advanced select dropdown | ||||||||||
Vue Instantsearch | 851 | 139 | 18 | 9 months ago | 77 | June 28, 2022 | mit | JavaScript | ||
👀 Algolia components for building search UIs with Vue.js | ||||||||||
Vue Simple Suggest | 457 | 18 | 7 | a month ago | 50 | October 12, 2021 | 58 | mit | Vue | |
Feature-rich autocomplete component for Vue.js |
A React, React Native and Vue.JS UI components library for Elasticsearch
Read how to build an e-commerce search UI
a.) with React, or b.) with React Native.
Web designer templates for sketch.
iOS and Android designer templates for sketch.
ReactiveSearch is an Elasticsearch UI components library for React and React Native. It has 25+ components consisting of Lists, Ranges, Search UIs, Result displays and a way to bring any existing UI component into the library.
The library is conceptually divided into two parts:
Each sensor component is built for applying a specific filter on the data. For example:
SingleList
sensor component applies an exact match filter based on the selected item.RangeSlider
component applies a numeric range query based on the values selected from the UI.DataSearch
component applies a suggestions and search query based on the search term typed by the user.Sensor components can be configured to create a combined query context and render the matching results via an actuator component.
ReactiveSearch primarily comes with two actuators: ResultCard
and ResultList
. ResultCard displays the results in a card interface whereas ResultList displays them in a list. Both provide built-in support for pagination and infinite scroll views. Besides these, the library also provides low level actuators (ReactiveComponent and ReactiveList) to render in a more customized fashion.
ThemeProvider
.Try the live component playground at playground. Look out for the knobs section in the playground part of the stories to tweak each prop and see the effects.
A set of live demos inspired by real world apps, built with ReactiveSearch.
You can check all of them on the examples section of website.
Here, we share how ReactiveSearch
compares with other projects that have similar aims.
# | ReactiveSearch | SearchKit | InstantSearch |
---|---|---|---|
Backend | Any Elasticsearch index hosted on any Elasticsearch cluster. | Any Elasticsearch index hosted on any Elasticsearch cluster. | Custom-built for Algolia, a proprietary search engine. |
Development | Actively developed and maintained. | Active issue responses, some development and maintenance. | Actively developed and maintained. |
Onboarding Experience | Starter apps, Live interactive tutorial, getting started guide, component playground, every component has a live working demo with codesandbox. | Getting started tutorial, no live component demos, sparse reference spec for many components. | Starter apps, getting started guide, component playground. |
Styling Support | Styled and scoped components. No external CSS import required. Rich theming supported as React props. | CSS based styles with BEM, not scoped to components. Theming supported with SCSS. | CSS based styles, requires external style import. Theming supported by manipulating CSS. |
Types of Components | Lists, Ranges, Search, Dates, Maps, Result Displays. Can use your own UI components. | Lists, Ranges, Search*, Result*. Can't use your own UI components. (Only one component for Search and Result, resulting in more code to be written for customizability) | Lists, Range, Search, Result. Can use your own UI components. |
Supported Distribution Platforms | React, Vue for Web, React Native for mobile. | React for Web. | React, Vue, Angular, vanilla JS for Web, React Native for mobile but latter has no UI components. |
We welcome contributions to this section. If you are building a project or you know of another project that is in the similar space, let us know and we will update the comparisons.
Installing ReactiveSearch is just one command.
npm install @appbaseio/reactivesearch
You can check out the quickstart guide with React here.
npm install @appbaseio/reactivesearch-native
You can check out the quickstart guide with React Native here.
The official docs for the Web library are at opensource.appbase.io/reactive-manual.
The components are divided into four sections:
Docs for React Native version of the library are available at opensource.appbase.io/reactive-manual/native.
Please check the contribution guide.
dejavu allows viewing raw data within an appbase.io (or Elasticsearch) app. Soon to be released feature: An ability to import custom data from CSV and JSON files, along with a guided walkthrough on applying data mappings.
mirage ReactiveSearch components can be extended using custom Elasticsearch queries. For those new to Elasticsearch, Mirage provides an intuitive GUI for composing queries.
ReactiveSearch Dashboard All your Reactive Search related apps (created via interactive tutorial, shared by others, etc.) can be accessed from here.
ReactiveMaps is a similar project to Reactive Search that allows building realtime maps easily.
appbase-js While building search UIs is dandy with Reactive Search, you might also need to add some input forms. appbase-js comes in handy there.