A complete React UI kit for building search interfaces with Indx. Everything you need to add full-text search, faceted filtering, and dynamic results to your React application.
View live demo here and View all components here
<SearchProvider url={url} email={email} password={password} dataset="products">
<SearchInput placeholder="Search products..." />
<ValueFilterPanel field="category" label="Category" />
<RangeFilterPanel field="price" label="Price" min={0} max={1000} />
<SearchResults fields={['name', 'price']} resultsPerPage={20}>
{(item) => <ProductCard {...item} />}
</SearchResults>
</SearchProvider>- Just Works - Drop in components, connect to your IndxCloudApi server, done
- Real-time Facets - Dynamic filter counts that update as users search
- Fuzzy Search - Handles typos and finds relevant results automatically
- Fully Customizable - Use our styles or bring your own
- Type Safe - Built with TypeScript for great DX
- Full-text search with typo tolerance
- Debounced search (optimized performance)
- Empty search support (browse all results)
- Custom result rendering
- Value Filters - Checkbox or button-style facets with counts
- Range Filters - Numeric sliders for prices, dates, etc.
- Active Filters - Chip-based display of applied filters
- Sort Options - Configurable sorting with radio or dropdown
- Automatic authentication (bearer token or email/password)
- Comprehensive error messages with fix suggestions
- TypeScript support with full type safety
- React 19 compatible
📖 README →
Complete API reference, examples, authentication methods, troubleshooting, and more.
This library is designed to work with the Indx Search platform:
- IndxCloudApi - Fast search server with fuzzy matching, facets, and aggregations
- IndxCloudLoader - C# console app for loading JSON datasets
- IndxNodeLoader - Node.js console app for loading JSON datasets
- indx-intrface (this repo) - React UI components for building search interfaces
Compatibility: This version is compatible with IndxCloudApi v1.0.
This is a monorepo containing multiple packages:
| Package | Description | License | npm |
|---|---|---|---|
| @indxsearch/intrface | Search UI components (featured above) | Apache-2.0 | npm i @indxsearch/intrface |
| @indxsearch/systm | Design system with tokens, UI components, patterns, cursors | Custom¹ | npm i @indxsearch/systm |
| @indxsearch/pixl | Icon library (separate package) | Custom | npm i @indxsearch/pixl |
¹ See Licensing below
This repository uses multiple licenses:
-
@indxsearch/intrface - Apache License 2.0
- ✅ Free for commercial use
- ✅ Modify and redistribute
- ✅ Use in your products
-
@indxsearch/systm - Indx Design System License
- ✅ Free for non-commercial use
- ✅ Personal projects, education, open source
- ❌ Cannot resell or use in competing commercial products
See LICENSES.md for full details.
This repo includes demo applications:
apps/components- Component showcase and examplesapps/demo- Full search interface demo
Run locally:
npm install
npm run dev- Getting Started Guide - Step-by-step tutorial for first-time setup
- API Guide - IndxCloudApi server API documentation
Built by Indx Search • Documentation • GitHub