meilisearch 0.0.3-pre meilisearch: ^0.0.3-pre copied to clipboard
MeiliSearch SDK for dart language.
MeiliSearch Dart
MeiliSearch | Documentation | Roadmap | Website | Blog | Twitter | FAQ
⚡ The MeiliSearch API client written for Dart
MeiliSearch Dart is the MeiliSearch API client for Dart developers. Which you can also use for your Flutter apps as well. 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, facets, and synonyms are provided out-of-the-box.
📖 Documentation #
See our Documentation or our API References.
🔧 Installation #
You can install meilisearch package by adding a few lines into pubspec.yaml
file.
dependencies:
meilisearch: ">=0.0.1 <2.0.0"
Then open your terminal and update dart packages.
$ pub get
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 # Fetch the latest version of MeiliSearch image from Docker Hub
$ docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
NB: you can also download MeiliSearch from Homebrew or APT.