
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@aha-app/netlify-flexsearch
Advanced tools
Implement search for static sites on Netlify, powered by FlexSearch and Netlify functions
netlify-flexsearch provides a set of tools for implementing search for static sites hosted on Netlify, powered by FlexSearch and Netlify functions.
You might find this library useful if:
Netlify functions are serverless functions that Netlify automatically detects in your build and serves as APIs. This library helps you generate one or more Netlify functions during your build process which each contain a FlexSearch index. You can then make asynchronous requests to these functions to perform searches; the package also includes helper functions for making search requests.
npm install flexsearch @aha-app/netlify-flexsearch
or
yarn add flexsearch @aha-app/netlify-flexsearch
createSearchIndex one or more times. createSearchIndex accepts one object argument with the following options:| Name | Type | Description |
|---|---|---|
index (required) | string | Unique name for the search index (this determines its API path) |
data (required) | object | Search data to be indexed (see example below for the required format) |
functionsPath (required) | string | Directory where you have configured Netlify functions (relative to the root directory of your application) |
flexSearchOptions (optional) | object | Additional options to be passed to FlexSearch when creating the index (see the FlexSearch documentation for available options) |
const createSearchIndex = require('@aha-app/netlify-flexsearch/createSearchIndex');
// Data must take on this exact format: an object where each key
// is a unique ID and the value is an object containing `text`
// (the text to be indexed for search) and `response` (the data that
// should be returned when this record is found via search).
const blogPosts = {
"hello-world": {
text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque augue odio, accumsan eu turpis et, fermentum pellentesque justo.",
response: {
slug: "hello-world",
title: "Hello World"
}
},
"second-post": {
text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque augue odio, accumsan eu turpis et, fermentum pellentesque justo.",
response: {
slug: "second-post",
title: "Second Post"
}
}
}
createSearchIndex({
index: 'blog',
data: blogPosts,
functionsPath: 'src/functions'
});
You should add a .gitignore entry to prevent the output of this script from being checked into git. If your Netlify functions folder is src/functions, the .gitignore entry might be src/functions/search* (all output filenames will begin with search).
Modify your Netlify build command to invoke the script defined in step 1 in addition to your regular build. For example, if your build command is currently gatsby build and you named the script from step createSearch.js, you might change the build command to node createSearch.js && gatsby build.
Import and use one of the helper functions for searching. The package provides both a React hook and a basic asynchronous function.
// Search.js (React-based usage)
import { useSearch } from '@aha-app/netlify-flexsearch';
const Search = () => {
// useSearch accepts two arguments:
//
// The first (required) is the string name of the index to
// search -- this must match the index name provided when
// building the inddex
//
// The second (optional) is an object of additional options:
// - debounce (default 250)
// - defaultSearchTerm (prefill the search with a term)
// - limit (default 25; limit the number of results that are returned)
// - excerpt (default none; will populate the response with the n words surrounding the first match, if possible)
const [searchTerm, setSearchTerm, results, loading, error] = useSearch('blog', { debounce: 300 });
return (
<div>
<input
type="search"
value={searchTerm}
onChange={e => setSearchTerm(e.target.value)}
placeholder="Search..."
/>
<h1>Search results</h1>
{loading && "Loading..."}
{error && `Oh no! Something went wrong.`}
{!(loading || error) && (
<ul>
{results.map((result) => (
// Result data here matches what is provided in the
// `response` object when building the index.
<li key={result.id}>
<strong>{result.name}</strong>
<p>
{result.excerpt.moreBefore && '...'}
{result.excerpt.text}
{result.excerpt.moreAfter && '...'}
</p>
</li>
))}
</ul>
)}
</div>
)
}
// Non-React helper
import { search } from '@aha-app/netlify-flexsearch';
search({ index: 'blog', term: 'hello', limit: 10 }).then(response => {
// Do something with the results
console.log(response.results);
})
MIT
FAQs
Implement search for static sites on Netlify, powered by FlexSearch and Netlify functions
We found that @aha-app/netlify-flexsearch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 31 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.