GitHub - thesephist/libsearch: Simple, index-free full-text search for JavaScript
libsearch 🔎
Simple, index-free text search for JavaScript, used across my personal projects like YC Vibe Check, linus.zone/entr, and my personal productivity software. Read the annotated source to understand how it works under the hood.
The API
Let's begin with some quick examples:
import { search } from 'libsearch'; // on Node.js
const { search } = window.libsearch; // in the browser
const articles = [
{ title: 'Weather in Berkeley, California' },
{ title: 'University report: UC Berkeley' },
{...
Read more at github.com