1
0
Fork 0
docsearch/packages/docsearch-js
Paul Jankowski ded5d44f5b
chore: release v4.4.0 (#2820)
* chore: release v4.4.0

* fix: changelog

* fix(ci): Split dts building to own process for all packages

* fix: remove unused import

* fix: remove unused import

* update yarn cache key

* fix: better dependency management
2025-12-19 12:56:58 -05:00
..
src fix(docsearch-js): resultsFooterComponent not working in JS CDN version (#2786) 2025-10-15 09:57:00 +01:00
babel.config.mjs chore(deps): dependencies 2024-11-04 (#2335) 2024-11-04 18:15:51 +01:00
package.json chore: release v4.4.0 (#2820) 2025-12-19 12:56:58 -05:00
README.md chore: Promote DocSearch v4 from Beta to Stable (#2752) 2025-09-15 16:41:59 +02:00
rollup.config.js chore: release v4.4.0 (#2820) 2025-12-19 12:56:58 -05:00
rollup.dts.config.js chore: release v4.4.0 (#2820) 2025-12-19 12:56:58 -05:00
tsconfig.declaration.json chore: update TypeScript 2020-11-25 11:37:58 +01:00

@docsearch/js

JavaScript package for DocSearch, the best search experience for docs.

Installation

yarn add @docsearch/js@4
# or
npm install @docsearch/js@4

Get started

If you dont want to use a package manager, you can use a standalone endpoint:

<script src="https://cdn.jsdelivr.net/npm/@docsearch/js@4"></script>

To get started, you need a container for your DocSearch component to go in. If you dont have one already, you can insert one into your markup:

<div id="docsearch"></div>

Then, insert DocSearch into it by calling the docsearch function and providing the container. It can be a CSS selector or an Element.

Make sure to provide a container (for example, a div), not an input. DocSearch generates a fully accessible search box for you.

import docsearch from '@docsearch/js';

import '@docsearch/css';

docsearch({
  container: '#docsearch',
  appId: 'YOUR_APP_ID',
  indexName: 'YOUR_INDEX_NAME',
  apiKey: 'YOUR_SEARCH_API_KEY',
});

Documentation

Read documentation →