Giter Site home page Giter Site logo

meilisearch / demos Goto Github PK

View Code? Open in Web Editor NEW
44.0 44.0 18.0 53.34 MB

A list of Meilisearch demos with open-source code and live preview ⚡️

License: MIT License

JavaScript 7.97% HTML 3.13% Vue 0.73% Shell 1.00% Rust 0.75% Python 0.54% CSS 3.05% Ruby 0.36% CoffeeScript 82.47% Handlebars 0.01%
meilisearch

demos's Introduction

Dependency status License Bors enabled

⚡ A lightning-fast search engine that fits effortlessly into your apps, websites, and workflow 🔍

Meilisearch helps you shape a delightful search experience in a snap, offering features that work out-of-the-box to speed up your workflow.

A bright colored application for finding movies screening near the user A dark colored application for finding movies screening near the user

🔥 Try it! 🔥

✨ Features

  • Search-as-you-type: find search results in less than 50 milliseconds
  • Typo tolerance: get relevant matches even when queries contain typos and misspellings
  • Filtering and faceted search: enhance your users' search experience with custom filters and build a faceted search interface in a few lines of code
  • Sorting: sort results based on price, date, or pretty much anything else your users need
  • Synonym support: configure synonyms to include more relevant content in your search results
  • Geosearch: filter and sort documents based on geographic data
  • Extensive language support: search datasets in any language, with optimized support for Chinese, Japanese, Hebrew, and languages using the Latin alphabet
  • Security management: control which users can access what data with API keys that allow fine-grained permissions handling
  • Multi-Tenancy: personalize search results for any number of application tenants
  • Highly Customizable: customize Meilisearch to your specific needs or use our out-of-the-box and hassle-free presets
  • RESTful API: integrate Meilisearch in your technical stack with our plugins and SDKs
  • Easy to install, deploy, and maintain

📖 Documentation

You can consult Meilisearch's documentation at https://www.meilisearch.com/docs.

🚀 Getting started

For basic instructions on how to set up Meilisearch, add documents to an index, and search for documents, take a look at our Quick Start guide.

⚡ Supercharge your Meilisearch experience

Say goodbye to server deployment and manual updates with Meilisearch Cloud. No credit card required.

🧰 SDKs & integration tools

Install one of our SDKs in your project for seamless integration between Meilisearch and your favorite language or framework!

Take a look at the complete Meilisearch integration list.

Logos belonging to different languages and frameworks supported by Meilisearch, including React, Ruby on Rails, Go, Rust, and PHP

⚙️ Advanced usage

Experienced users will want to keep our API Reference close at hand.

We also offer a wide range of dedicated guides to all Meilisearch features, such as filtering, sorting, geosearch, API keys, and tenant tokens.

Finally, for more in-depth information, refer to our articles explaining fundamental Meilisearch concepts such as documents and indexes.

📊 Telemetry

Meilisearch collects anonymized data from users to help us improve our product. You can deactivate this whenever you want.

To request deletion of collected data, please write to us at [email protected]. Don't forget to include your Instance UID in the message, as this helps us quickly find and delete your data.

If you want to know more about the kind of data we collect and what we use it for, check the telemetry section of our documentation.

📫 Get in touch!

Meilisearch is a search engine created by Meili, a software development company based in France and with team members all over the world. Want to know more about us? Check out our blog!

🗞 Subscribe to our newsletter if you don't want to miss any updates! We promise we won't clutter your mailbox: we only send one edition every two months.

💌 Want to make a suggestion or give feedback? Here are some of the channels where you can reach us:

Thank you for your support!

👩‍💻 Contributing

Meilisearch is, and will always be, open-source! If you want to contribute to the project, please take a look at our contribution guidelines.

📦 Versioning

Meilisearch releases and their associated binaries are available in this GitHub page.

The binaries are versioned following SemVer conventions. To know more, read our versioning policy.

Differently from the binaries, crates in this repository are not currently available on crates.io and do not follow SemVer conventions.

demos's People

Contributors

aniketh-varma avatar bb avatar bidoubiwa avatar carofg avatar curquiza avatar dependabot-preview[bot] avatar dependabot[bot] avatar eskombro avatar ferdi05 avatar fharper avatar kerollmops avatar meili-bot avatar moskalyka avatar nicolasvienot avatar oluademola avatar qdequele avatar shivaylamba avatar shreyamg avatar strift avatar viveknshah avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

demos's Issues

e-commerce deploy fails on Vercel

FYI @shivaylamba

The deployment of the e-commerce demo fails on Vercel. See here.

Capture d’écran 2022-06-09 à 17 10 22

In order to fix the issue, you need to add "sourceType": "module" in the .eslintrc.json file:

 "parserOptions": {
    "sourceType": "module",
    "ecmaVersion": 12
  },

But then, it raises other errors because eslint is still not configured properly:

Capture d’écran 2022-06-09 à 17 54 26

In order to fix it, you need to do the following:

  • Addition of next in the extends list of the .eslintrc.json file:
"extends": ["next", "eslint:recommended", "plugin:prettier/recommended"],
  • Update of the eslint scripts in the package.json file in order to lint the JSX files and not only the JS ones:
    "lint": "eslint --ext .js,.jsx .",
    "lint:fix": "eslint --ext .js,.jsx . --fix",

Then the linter should finally run correctly and raise a lot of errors in the JSX files:

Capture d’écran 2022-06-09 à 17 57 21

By running npm run lint:fix it should fix the majority of these linter issues (quotes, semicolons, ...)

Only 2 warning are still present and can be fixed manually:

Capture d’écran 2022-06-09 à 17 58 39

Add more information regarding demos

Can we describe the size of the dataset used for the demo, where the demo is running & the server specifications and the features used in the demo?
This will help us choose the demo we want to demo

Add Vercel process

The following steps should be explained:

  • Ignored Build Step
  • Env vars
  • Git fork protection

Bug in geosearch Demo

hi,

i can't move the map, and the console log shows this,

code : "invalid_filter" link : "https://docs.meilisearch.com/errors#invalid_filter" message : "Attribute _geo is not filterable. This index does not have configured filterable attributes.\n12:20 _geoRadius(23.64489, 53.88827, 98910.50790807468)" type : "invalid_request"

Update naming on demos

Meilisearch is still written with a capital S in our demos, it should be updated to the new naming convention

Link to the live demos

Hello :)
Would that be possible to add the links to every live demo? I was searching for the moma one and couldn't remember the UR ^^

Add tenant token demo

As Meilisearch v0.26.0 got released with the feature of tenant tokens, we have created a demo to showcase how to generate and use tenant tokens inside of Meilisearch.

Update demo MoMA

This demo is not compatible with the latest version of MeiliSearch.

Breaking changes:

  • getOrCreateIndex method has been removed (should be replaced with createIndex and/or index)
  • getAllUpdateStatus method has been replaced by getTasks which returns an object with a results array containing the task objects

Improvements:

  • There is now an addDocumentsInBatches method that would simplify the code

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.