Home
Softono

Search Index

Open source MIT JavaScript
1.4K
Stars
149
Forks
5
Issues
30
Watchers
1 year
Last Commit

 About Search Index

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

Platforms

Web Self-hosted

Languages

JavaScript

Links

Need Help Installing Search Index?

We provide expert installation service for this software. Our team will install, configure, and secure Search Index on your server. plans start at just $30.

Search Index

View on GitHub

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