1
0
Fork 0
docsearch/packages/docsearch-js
2026-03-02 18:52:01 +01:00
..
src chore: release v4.5.0-beta.0 (#2834) 2026-01-08 20:32:06 +01:00
package.json chore: migrate to from yarn, lerna and shipjs to bun & changesets (#2827) 2026-03-02 18:52:01 +01:00
README.md chore: migrate to from yarn, lerna and shipjs to bun & changesets (#2827) 2026-03-02 18:52:01 +01:00
tsdown.config.ts chore: Update to use tsdown for build system (#2824) 2026-02-20 13:24:32 -05:00

@docsearch/js

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

Installation

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 →