MeiliSearch JavaScript
ā” Lightning Fast, Ultra Relevant, and Typo-Tolerant Search Engine MeiliSearch client written in JavaScript
MeiliSearch JavaScript is a client for MeiliSearch written in JavaScript. MeiliSearch is a powerful, fast, open-source, easy to use and deploy search engine. Both searching and indexing are highly customizable. Features such as typo-tolerance, filters, and synonyms are provided out-of-the-box.
Table of Contents
š§ Installation
npm install meilisearch
yarn add meilisearch
šāāļø Run MeiliSearch
There are many easy ways to download and run a MeiliSearch instance.
For example, if you use Docker:
$ docker pull getmeili/meilisearch:latest
$ docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
NB: you can also download MeiliSearch from Homebrew or APT.
Import
Front End or ESmodule
import MeiliSearch from 'meilisearch'
const client = new MeiliSearch({
host: 'http://127.0.0.1:7700',
apiKey: 'masterKey',
})
HTML Import
<script src="https://cdn.jsdelivr.net/npm/meilisearch@latest/dist/bundles/meilisearch.umd.js"></script>
<script>
const client = new MeiliSearch({
host: 'http://127.0.0.1:7700',
apiKey: 'masterKey',
})
client.listIndexes().then(res => {
console.log({ res });
})
</script>
Back-End CommonJs
const MeiliSearch = require('meilisearch')
const client = new MeiliSearch({
host: 'http://127.0.0.1:7700',
apiKey: 'masterKey',
})
š¬ Getting started
Here is a quickstart for a search request
const MeiliSearch = require('meilisearch')
import MeiliSearch from 'meilisearch'
;(async () => {
const client = new MeiliSearch({
host: 'http://127.0.0.1:7700',
apiKey: 'masterKey',
})
const index = await client.createIndex('books')
const index = client.getIndex('books')
const documents = [
{ book_id: 123, title: 'Pride and Prejudice' },
{ book_id: 456, title: 'Le Petit Prince' },
{ book_id: 1, title: 'Alice In Wonderland' },
{ book_id: 1344, title: 'The Hobbit' },
{ book_id: 4, title: 'Harry Potter and the Half-Blood Prince' },
{ book_id: 42, title: "The Hitchhiker's Guide to the Galaxy" },
]
let response = await index.addDocuments(documents)
console.log(response)
})()
With the updateId
, you can check the status (processed
or failed
) of your documents addition thanks to this method.
Search in index
const search = await index.search('harry pottre')
console.log(search)
Output:
{
"hits": [
{
"book_id": 4,
"title": "Harry Potter and the Half-Blood Prince"
}
],
"offset": 0,
"limit": 20,
"processingTimeMs": 1,
"query": "harry pottre"
}
š¤ Compatibility with MeiliSearch
This package only guarantees the compatibility with the version v0.15.0 of MeiliSearch.
š¬ Examples
All HTTP routes of MeiliSearch are accessible via methods in this SDK.
You can check out the API documentation.
Go checkout examples!
In this section, the examples contain the await
keyword.
Indexes
Create an index
const index = await client.createIndex('books')
const index = await client.createIndex('books', { primaryKey: 'book_id' })
List all indexes
const indexes = await client.listIndexes()
Get an index object
const index = client.getIndex('books')
Documents
Fetch documents
const document = await index.getDocument(123)
const documents = await index.getDocuments({ offset: 4, limit: 20 })
Add documents
await index.addDocuments([{ book_id: 2, title: 'Madame Bovary' }])
Response:
{
"updateId": 1
}
With this updateId
you can track your operation update.
Delete documents
await index.deleteDocument(2)
await index.deleteDocuments([1, 42])
await index.deleteAllDocuments()
Update status
await index.getUpdateStatus(1)
await index.getAllUpdateStatus()
Search
Basic search
const search = await index.search('prince')
{
"hits": [
{
"book_id": 456,
"title": "Le Petit Prince"
},
{
"book_id": 4,
"title": "Harry Potter and the Half-Blood Prince"
}
],
"offset": 0,
"limit": 20,
"processingTimeMs": 13,
"query": "prince"
}
Custom search
All the supported options are described in this documentation section.
await index.search('prince', { limit: 1, attributesToHighlight: '*' })
{
"hits": [
{
"book_id": 456,
"title": "Le Petit Prince",
"_formatted": {
"book_id": 456,
"title": "Le Petit <em>Prince</em>"
}
}
],
"offset": 0,
"limit": 1,
"processingTimeMs": 0,
"query": "prince"
}
Placeholder Search
Placeholder search makes it possible to receive hits based on your parameters without having any query (q
).
To enable this behavior, instead of sending an empty string, the query should be null
or undefined
.
await index.search(null, {
facetFilters: ['genre:fantasy'],
facetsDistribution: ['genre']
})
{
"hits": [
{
"genre": "fantasy",
"id": 4,
"title": "Harry Potter and the Half-Blood Prince",
"comment": "The best book"
},
{
"genre": "fantasy",
"id": 42,
"title": "The Hitchhiker's Guide to the Galaxy"
}
],
"offset": 0,
"limit": 20,
"nbHits": 2,
"exhaustiveNbHits": false,
"processingTimeMs": 0,
"query": "",
"facetsDistribution": { "genre": { "fantasy": 2, "romance": 0, "sci fi": 0, "adventure": 0 } },
"exhaustiveFacetsCount": true
}
āļø Development Workflow and Contributing
Any new contribution is more than welcome in this project!
If you want to know more about the development workflow or want to contribute, please visit our contributing guidelines for detailed instructions!
š API Resources
Search
client.getIndex<T>('xxx').search(query: string, options: SearchParams = {}, method: 'POST' | 'GET' = 'POST'): Promise<SearchResponse<T>>
Indexes
client.listIndexes(): Promise<IndexResponse[]>
client.createIndex<T>(uid: string, options?: IndexOptions): Promise<Index<T>>
client.getIndex<T>(uid: string): Index<T>
- Get or create index if it does not exist
client.getOrCreateIndex<T>(uid: string, options?: IndexOptions): Promise<Index<T>>
index.show(): Promise<IndexResponse>
index.updateIndex(data: IndexOptions): Promise<IndexResponse>
index.deleteIndex(): Promise<void>
index.getStats(): Promise<IndexStats>
Updates
index.getUpdateStatus(updateId: number): Promise<Update>
index.getAllUpdateStatus(): Promise<Update[]>
index.waitForPendingUpdate(updateId: number, { timeOutMs?: number, intervalMs?: number }): Promise<Update>
Documents
- Add or replace multiple documents:
index.addDocuments(documents: Document<T>[]): Promise<EnqueuedUpdate>
- Add or update multiple documents:
index.updateDocuments(documents: Document<T>[]): Promise<EnqueuedUpdate>
index.getDocuments(params: getDocumentsParams): Promise<Document<T>[]>
index.getDocument(documentId: string): Promise<Document<T>>
index.deleteDocument(documentId: string | number): Promise<EnqueuedUpdate>
- Delete multiple documents:
index.deleteDocuments(documentsIds: string[] | number[]): Promise<EnqueuedUpdate>
- Delete all documents:
index.deleteAllDocuments(): Promise<Types.EnqueuedUpdate>
Settings
index.getSettings(): Promise<Settings>
index.updateSettings(settings: Settings): Promise<EnqueuedUpdate>
index.resetSettings(): Promise<EnqueuedUpdate>
Synonyms
index.getSynonyms(): Promise<object>
index.updateSynonym(synonyms: object): Promise<EnqueuedUpdate>
index.resetSynonym(): Promise<EnqueuedUpdate>
Stop-words
-
Get Stop Words
index.getStopWords(): Promise<string[]>
-
Update Stop Words
index.updateStopWords(string[]): Promise<EnqueuedUpdate>
-
Reset Stop Words
index.resetStopWords(): Promise<EnqueuedUpdate>
Ranking rules
-
Get Ranking Rules
index.getRankingRules(): Promise<string[]>
-
Update Ranking Rules
index.updateRankingRules(rankingRules: string[]): Promise<EnqueuedUpdate>
-
Reset Ranking Rules
index.resetRankingRules(): Promise<EnqueuedUpdate>
Distinct Attribute
-
Get Distinct Attribute
index.getDistinctAttribute(): Promise<string | void>
-
Update Distinct Attribute
index.updateDistinctAttribute(distinctAttribute: string): Promise<EnqueuedUpdate>
-
Reset Distinct Attribute
index.resetDistinctAttribute(): Promise<EnqueuedUpdate>
Searchable Attributes
-
Get Searchable Attributes
index.getSearchableAttributes(): Promise<string[]>
-
Update Searchable Attributes
index.updateSearchableAttributes(searchableAttributes: string[]): Promise<EnqueuedUpdate>
-
Reset Searchable Attributes
index.resetSearchableAttributes(): Promise<EnqueuedUpdate>
Displayed Attributes
-
Get Displayed Attributes
index.getDisplayedAttributes(): Promise<string[]>
-
Update Displayed Attributes
index.updateDisplayedAttributes(displayedAttributes: string[]): Promise<EnqueuedUpdate>
-
Reset Displayed Attributes
index.resetDisplayedAttributes(): Promise<EnqueuedUpdate>
Keys
client.getKeys(): Promise<Keys>
Healthy
- Check if the server is healthy
client.isHealthy(): Promise<void>
Stats
client.stats(): Promise<Stats>
Version
client.version(): Promise<Version>
Dumps
- Trigger a dump creation process
client.createDump(): Promise<Types.EnqueuedDump>
- Get the status of a dump creation process
client.getDumpStatus(dumpUid: string): Promise<Types.EnqueuedDump>
MeiliSearch provides and maintains many SDKs and Integration tools like this one. We want to provide everyone with an amazing search experience for any kind of project. If you want to contribute, make suggestions, or just know what's going on right now, visit us in the integration-guides repository.