Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 962 Bytes

readme.md

File metadata and controls

31 lines (19 loc) · 962 Bytes

Meilisearch Name Synonyms

This is an importable list of nicknames to be used as a meilisearch synonym list.

Installing

npm i meilisearch-name-synonyms

Usage

Assuming you have a search index for people:

import { MeiliSearch } from "meilisearch";
import { nameSynonyms } from "meilisearch-name-synonyms";

const client = new MeiliSearch({ host: "http://localhost:7700" });

const userIndex = client.index("users");

await userIndex.updateSynonyms(nameSynonyms);

/// or if you need to add in a few more
await userIndex.updateSynonyms({ ...nameSynonyms, superman: ["wow"] });

Sources

Name list is provided by https://github.com/carltonnorthern/nicknames/blob/master/names.csv and licensed under Apache-2.0