Created
February 18, 2020 14:12
-
-
Save qdequele/7c9a766d5e51893bea95e7cb2eb58705 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Meili = require('meilisearch') | |
// Credentials of your MeiliSearch Instance | |
const config = { | |
host: 'http://127.0.0.1:7700', | |
apiKey: 'masterKey', | |
} | |
const meili = new Meili(config) | |
meili | |
.Index('movies') | |
.search({ q: 'batman' }) | |
.then((response) => { | |
console.log(response.hits) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment