Fuse.js Library

From GM-RKB
Jump to navigation Jump to search

A Fuse.js Library is a fuzzy search JavaScript library.

  • Context:
    • It can perform approximate string matching, which is beneficial for searching texts that may not be exactly equal to the search query.
    • It can be used both on the client side and server side, thanks to its lack of DOM dependencies.
    • It can be easily integrated into projects using npm, Yarn, or direct ``<script>`` inclusion from a CDN.
    • It can support all browsers that are ES5-compliant.
    • It can be an ideal choice for projects requiring client-side search capabilities without the overhead of a dedicated search backend.
    • ...
  • Example(s):
    • ...
  • Counter-Example(s):
    • ...
  • See: Search and Replace Library, Fuzzy Search System.