cozy-fork-search-index

Temporary fork of https://www.npmjs.com/package/search-index experimenting with lower RAM consumption


Keywords
index, language, lucene, natural, search, nlp, offline-first
License
MIT
Install
npm install cozy-fork-search-index@0.6.15

Documentation

search-index

A network resilient, persistent full-text search library for the browser and Node.js

npm npm license Build Status JavaScript Style Guide

Quick start

import { SearchIndex } from 'search-index' 

// initialize an index
const { PUT, QUERY } = new SearchIndex(options)

// add documents to the index
await PUT(documents)

// read documents from the index
const results = await QUERY(query)

Documentation