Socket
Socket
Sign inDemoInstall

clientside-search

Package Overview
Dependencies
0
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    clientside-search

A highly efficient, isomorphic, full-featured, multilingual text search engine library, providing full-text search, fuzzy matching, phonetic scoring, document indexing and more, with micro JSON state hydration/dehydration in-browser and server-side.


Version published
Weekly downloads
1.9K
decreased by-4.63%
Maintainers
1
Install size
2.04 MB
Created
Weekly downloads
 

Readme

Source

"Why don't we have a decent, Lucene-like client-side (in-browser) search engine by now?"

This library provides Lucene-like full-text search features for the browser and Node.js.

This search engine uses several advanced algorithms to provide robust and efficient searching over a large collection of documents. The algorithms used include TF-IDF for weighing and ranking, BK-Tree for fuzzy matching, BM25 for relevance scoring, and Damerau-Levenshtein distance for measuring the edit distance between search terms. The search engine supports multiple languages and uses stemming and stopword removal to enhance its efficiency. It also supports the storage and retrieval of metadata associated with the documents. You can generate an index from a text corpus and metadata both on client- and server-side. You can hydrate and re-hydrate (reuse a pre-generated) the index as well on both client- and server-side.

Developers' User Stories

  1. I want to use a Lucene-like index that uses TF-IDF vectorization, BM25 and BKTree ranking as well as snowball stemming by and stopwords on client side.

  2. I want to generate the search index either on client side or server-side (and re-hydrate/re-use it on client or server-side). State information should be small and compressed.

  3. The full-text search shall be fast and efficient, not leading to alot of false-positives or false-negatives.

  4. The search engine should be able to retreive and search in metadata that may be associated with each document.

  5. The search engine should be able to remove/update it's index' documents.

  6. State shall be hydratable.

Features

  • Full-Text Search: Provides the ability to perform a comprehensive text-based search over a large collection of documents.
  • Multilingual Support: Supports multiple languages for indexing and searching documents and automatic language detection for input text.
  • Text Processing: Includes text transformation operations like converting to lower case, splitting by words, snowball stemming (Dr. Martin Porter), and stopword removal.
  • Document Indexing: Allows adding of documents to the index along with metadata to make them searchable. Document Removal: Provides functionality to remove a specific document from the index based on its ID.
  • Search Query Processing: Processes search queries in the same way as document text to ensure a consistent matching algorithm.
  • Relevance Scoring with BM25 Algorithm: Uses the BM25 algorithm for relevance scoring of documents against search queries.
  • Fuzzy Matching with BK-Tree: Uses a BK-Tree structure to perform fuzzy matching, i.e., to find words in the index that are similar to the search terms.
  • Term Frequency-Inverse Document Frequency (TF-IDF) Weighting: Uses TF-IDF to weight and rank the indexed words based on their importance in the document and rarity in the overall document set.
  • State Hydration and Dehydration: Provides functionality to save (dehydrate) the state of the search engine to a compressed format, or to restore (hydrate) it from a previously saved state either locally or remotely.
  • Damerau-Levenshtein Distance Calculation: Includes a function to calculate the Damerau-Levenshtein distance, i.e., the minimum number of operations (insertions, deletions, substitutions, transposition) required to change one word into another.
  • Phonetic Scoring: Uses language-specific phonetic algorithms such as Double Metaphone and Koelner Phonetik as a tie breaker when Damerau-Levenshtein Distance is equal for two matches.
  • Document ID Generation: Generates a unique ID for each document based on its text.
  • Automatic Stop Word selection: Selects the best default stop words per language supported.
  • ✅ Currently supports only: en, de, fr, es, ja
  • ✅ Supports UTF8
  • ✅ Available as a simple API
  • ✅ Just 8 KiB nano sized (ESM, gizpped, base library)
  • ✅ Zero dependencies!
  • ✅ Tree-shakable and side-effect free
  • ✅ First class TypeScript support
  • ✅ Well tested using Jest Unit Tests

Example usage

Setup

  • yarn: yarn add clientside-search
  • npm: npm install clientside-search

ESM

import { SearchEngine } from 'clientside-search'
import en from 'clientside-search/en'

// create a new instance of a search engine
const searchEngine = new SearchEngine(en)

// add some text
const docId1 = searchEngine.addDocument('The quick brown fox jumps over the lazy dog')

// you can also add UTF8 text, and metadata
const docId2 = searchEngine.addDocument('The quick brown fox jumps over the fence ✅', {
  // metadata with index_ prefix will be indexed for search
  index_title: 'Fence',
  date: new Date(),
  author: 'John Doe',
})

/**
 * {
 *   id:
 *   score: 1.34,
 *   metadata: { title: 'Fence', date: '2023-07-12 ...', author: 'John Doe' }
 * }
 */
const searchResult = searchEngine.search('Fence')

// if you want to persist the index state,
// hydratedState is a JSON string that you can persist
const hydratedState = searchEngine.hydrateState()

// PLEASE NOTE: The hydrated state does NOT contain the original input text
// It contains an optimized representation of the search index
// However, metadata is kept 1:1

// you can re-hydrate from that state anywhere,
// on the server or the client:
const hydratedEngine = SearchEngine.fromHydratedState(hydratedState, en)

// equals: searchResult
const searchResultFromHydated = hydratedEngine.search('Fence')

CommonJS

const { SearchEngine } = require('clientside-search')
const { en } = require('clientside-search/en')

// same API like ESM variant

Roadmap

  • Advanced Asian language support:
    • Support for Chinese using Jieba
      • No BKTree, but N-gram comparison
      • Character-based TF-IDF
      • Disable stemming
      • e.g. Jaccard similarity
    • Korean
      • No BKTree, but N-gram comparison
      • Jamo Levenshtein Distance
      • TF-IDF

Keywords

FAQs

Last updated on 21 Jul 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc