Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
vuepress-plugin-meilisearch
Advanced tools
⚡ The Meilisearch plugin for VuePress
Meilisearch VuePress is a Meilisearch plugin for VuePress.
Meilisearch is an open-source search engine. Discover what Meilisearch is!
If you don't use VuePress for your documentation, but you still need a search bar, you might check out this front-end SDK.
.
This plugin is used in production on the Meilisearch documentation.
The goal of this plugin is to provide very easy integration of a search bar into your own VuePress documentation. To make that possible, you need to gather your website content in advance, and index it in a Meilisearch instance.
Luckily, we provide all the tools that you need, and can help you through the whole process, if you follow this guide 🚀
As a first introduction, you might only want to test this plugin without connecting it to your website.
You can do it by running the VuePress playground provided in this repository:
yarn install
yarn playground
Then, open your browser on the indicated URL and test the search bar 🙂
The data comes from Meilisearch documentation.
Type create an indxe
to live the Meilisearch experience with the typo tolerance.
In your VuePress project:
yarn add vuepress-plugin-meilisearch
# or
npm install vuepress-plugin-meilisearch
In your config.js
file:
module.exports = {
plugins: [
[
'vuepress-plugin-meilisearch',
{
hostUrl: 'https://mymeilisearch.com',
apiKey: 'XXX',
indexUid: 'docs'
}
]
]
}
WARNING: Since the configuration file is public, we recommend providing the Meilisearch public key, which is enough to perform searches.
Read more about Meilisearch authentication.
module.exports = {
plugins: [
[
'vuepress-plugin-meilisearch',
{
hostUrl: 'https://mymeilisearch.com', // Mandatory
apiKey: 'XXX', // Mandatory
indexUid: 'docs-test', // Mandatory
placeholder: 'Search as you type...', // Default: ""
maxSuggestions: 10, // Default: 5
hotKeys: [], // Default: ['s', '/']
cropLength: 50, // Default: 30
layout: 'simple', // Default: "columns"
debug: true, // Default: false
enableDarkMode: 'auto' // Default: false
}
]
]
}
You can enable dark mode by adding enableDarkMode: 'auto'
to your configuration file.
To override the default theme of the search bar, you can edit your .vuepress/styles/palette.styl
file.
A few variables are available:
$accentDarkColor
$inputDarkBgColor
$textDarkColor
$borderDarkColor
$dropdownBgDarkColor
You can also find an example in our playground's palette.styl
file
This package only guarantees the compatibility with the version v0.27.0 of Meilisearch.
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!
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.
FAQs
Relevant and typo tolerant search bar for your Vuepress
The npm package vuepress-plugin-meilisearch receives a total of 0 weekly downloads. As such, vuepress-plugin-meilisearch popularity was classified as not popular.
We found that vuepress-plugin-meilisearch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.