MeiliSearch
Provide powerful indexing and searching features in your commerce application with MeiliSearch.
Features
- Flexible configurations for specifying searchable and retrievable attributes.
- Ready-integration with Medusa's Next.js starter storefront.
- Utilize MeiliSearch's powerful search functionalities including typo-tolerance, synonyms, filtering, and more.
Prerequisites
How to Install
1. Run the following command in the directory of the Medusa backend:
1npm install medusa-plugin-meilisearch
2. Set the following environment variables in
:Copy to clipboard.env
12MEILISEARCH_HOST=<YOUR_MEILISEARCH_HOST>MEILISEARCH_API_KEY=<YOUR_MASTER_KEY>
3. In
add the following at the end of theCopy to clipboardmedusa-config.js
array:Copy to clipboardplugins
1234567891011121314151617181920212223242526272829303132333435const plugins = [// ...{resolve: `medusa-plugin-meilisearch`,options: {config: {host: process.env.MEILISEARCH_HOST,apiKey: process.env.MEILISEARCH_API_KEY,},settings: {products: {indexSettings: {searchableAttributes: ["title","description","variant_sku",],displayedAttributes: ["title","description","variant_sku","thumbnail","handle",],},primaryKey: "id",transformer: (product) => ({id: product.id,// other attributes...}),},},},},]
Test the Plugin
1. Run the following command in the directory of the Medusa backend to run the backend:
1npm run start
2. Try searching products either using your storefront or using the Store APIs.