You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thin & minimal low-level HTTP client to interact with Algolia's API
Works both on the browser and node.js
UMD and ESM compatible, you can use it with any module loader
Built with TypeScript
💡 Getting Started
To get started, you first need to install algoliasearch (or any other available API client package).
All of our clients comes with type definition, and are available for both browser and node environments.
With a package manager
yarn add algoliasearch@5.34.1
# or
npm install algoliasearch@5.34.1
# or
pnpm add algoliasearch@5.34.1
Without a package manager
Add the following JavaScript snippet to the of your website:
// for the full client
<scriptsrc="https://cdn.jsdelivr.net/npm/algoliasearch@5.34.1/dist/algoliasearch.umd.js"></script>
// for the lite client
<scriptsrc="https://cdn.jsdelivr.net/npm/algoliasearch@5.34.1/dist/lite/builds/browser.umd.js"></script>
Usage
You can now import the Algolia API client in your project and play with it.
import{algoliasearch}from'algoliasearch';constclient=algoliasearch('YOUR_APP_ID','YOUR_API_KEY');// or with the lite clientimport{liteClient}from'algoliasearch/lite';constclient=liteClient('YOUR_APP_ID','YOUR_API_KEY');
Encountering an issue? Before reaching out to support, we recommend heading to our FAQ where you will find answers for the most common issues and gotchas with the client. You can also open a GitHub issue
📄 License
The Algolia JavaScript API Client is an open-sourced software licensed under the MIT license.
About
⚡️ A fully-featured and blazing-fast JavaScript API client to interact with Algolia.