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

search-index downloads search-index version search-index license

search-index類似套件:
npm下載趨勢
3 年
🌟 在 search-index 的 README.md 中顯示即時使用量圖表,只需複製下面的代碼。
## 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
🌟 在 search-index 的 README.md 中顯示 GitHub stars 趨勢圖表,只需複製下面的代碼。
## GitHub Stars Trend
[![GitHub Stars Trend of search-index](https://npm-compare.com/img/github-trend/search-index.png)](https://npm-compare.com/search-index)
統計詳情
套件
下載數
Stars
大小
Issues
發布時間
許可
search-index15,7571,419693 kB57 個月前MIT
search-index 的 README

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