Find Similar Packages for search-index
search-indexSimilar Packages:
Npm Package Weekly Downloads Trend
3 Years
🌟 Show real-time usage chart on search-index's README.md, just copy the code below.
## Usage Trend
[![Usage Trend of search-index](https://npm-compare.com/img/npm-trend/THREE_YEARS/search-index.png)](https://npm-compare.com/search-index#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
search-index16,232
1,419693 kB56 months agoMIT
README for search-index

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