1
0
Fork 0
📘 The easiest way to add search to your documentation.
Find a file
2022-12-27 12:26:48 +01:00
.circleci chore(deps): dependencies 2022-10-17 (#1598) 2022-10-21 09:49:57 +02:00
.codesandbox chore(deps): update lint dependency (#1120) 2021-11-02 12:06:22 +01:00
.github chore: rename next branch to main (#1478) 2022-08-02 17:49:20 +02:00
cypress feat: enable Cmd+K shortcut when caps lock is on (#1590) 2022-10-23 14:07:41 +02:00
examples chore: release v3.3.0 (#1633) 2022-10-25 16:38:20 +02:00
packages fix(modal): enable outline for focus state (#1732) 2022-12-27 12:26:48 +01:00
scripts feat(translations): expose Button and Modal translations (#1183) 2021-11-22 14:24:07 +01:00
.editorconfig chore: more files to root 2020-09-01 11:54:48 +02:00
.env.sample chore: more files to root 2020-09-01 11:54:48 +02:00
.eslintignore fix(dependencies): upgrade dependencies (#1015) 2021-07-09 10:48:33 +02:00
.eslintrc.js chore(deps): update dependency eslint to v8 (#1116) 2021-11-18 17:06:53 +01:00
.gitignore fix(dependencies): upgrade dependencies (#1015) 2021-07-09 10:48:33 +02:00
.nvmrc chore(deps): dependencies 2022-10-17 (#1598) 2022-10-21 09:49:57 +02:00
.prettierignore fix(dependencies): upgrade dependencies (#1015) 2021-07-09 10:48:33 +02:00
.prettierrc chore(prettier): remove endOfLine 2020-12-01 18:30:36 +01:00
.stylelintrc.json chore: more files to root 2020-09-01 11:54:48 +02:00
babel.config.js chore: ignore no-commonjs lint rule for config files 2020-11-12 17:32:52 +01:00
bundlesize.config.json fix(searchbutton): fix react production hydration error (#1384) 2022-06-24 14:59:27 +02:00
CHANGELOG.md chore: release v3.3.0 (#1633) 2022-10-25 16:38:20 +02:00
CODEOWNERS chore: add CODEOWNERS (#1535) 2022-09-01 13:38:06 +02:00
CONTRIBUTING.md chore: update CONTRIBUTING sandbox link 2022-08-03 16:20:48 +02:00
cypress.json chore: more files to root 2020-09-01 11:54:48 +02:00
global.d.ts chore(deps): update lint dependency (#1120) 2021-11-02 12:06:22 +01:00
jest.config.js feat(translations): expose Button and Modal translations (#1183) 2021-11-22 14:24:07 +01:00
lerna.json chore: release v3.3.0 (#1633) 2022-10-25 16:38:20 +02:00
LICENSE chore: more files to root 2020-09-01 11:54:48 +02:00
netlify.toml chore(deps): dependencies 2022-10-24 (#1620) 2022-10-24 09:43:28 +02:00
package.json chore(deps): dependencies 2022-10-31 (#1635) 2022-11-03 09:22:18 +01:00
README.md chore: rename next branch to main (#1478) 2022-08-02 17:49:20 +02:00
renovate.json chore: add renovate-automatic-branch action (#1443) 2022-07-21 09:43:03 +02:00
rollup.base.config.js chore: update tooling 2020-09-01 14:24:58 +02:00
ship.config.js chore(deps): update lint dependency (#1120) 2021-11-02 12:06:22 +01:00
tsconfig.declaration.json chore: more files to root 2020-09-01 11:54:48 +02:00
tsconfig.json feat(translations): expose Button and Modal translations (#1183) 2021-11-22 14:24:07 +01:00
yarn.lock chore(deps): dependencies 2022-10-31 (#1635) 2022-11-03 09:22:18 +01:00

DocSearch

The easiest way to add search to your documentation for free.

Netlify Status npm version License

DocumentationJavaScript PlaygroundReact Playground


DocSearch crawls your documentation, pushes the content to an Algolia index and provides a dropdown search experience on your website.

Preview

Screencast

Light Dark
Light preview Dark preview

Usage

Don't have your Algolia credentials yet? Apply to DocSearch!

JavaScript

Installation

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

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

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

Get started

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',
});

React

Installation

yarn add @docsearch/react@3
# or
npm install @docsearch/react@3

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

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

Get started

DocSearch generates a fully accessible search box for you.

import { DocSearch } from '@docsearch/react';

import '@docsearch/css';

function App() {
  return (
    <DocSearch
      appId="YOUR_APP_ID"
      indexName="YOUR_INDEX_NAME"
      apiKey="YOUR_SEARCH_API_KEY"
    />
  );
}

export default App;

Styling

Read documentation →

DocSearch is made of the following repositories:

License

MIT