Files
modules/indexes-search/hyper-p2p-fulltext-lite
Raven ScottandCursor de7dcc38be Expand consensus, agents, indexes, economy, pear, and observability modules
Add raft clearLog and logEntryAt, workflow nodeIds and failAllPending,
runtime session endAllActive, message envelope resetStats, trie removeBatch,
fulltext and marketplace clear helpers, credit accountCount, trace span
bulk end, link probe clearAll, import map clearAll, grow-only set clearAll,
and geo router peer listing utilities.

Co-authored-by: Cursor <[email protected]>
2026-05-21 02:58:47 -04:00
..
2026-05-20 23:36:32 -04:00
2026-05-20 22:56:32 -04:00
2026-05-21 00:07:44 -04:00
2026-05-20 21:57:50 -04:00
2026-05-20 21:57:50 -04:00
2026-05-20 22:56:32 -04:00

hyper-p2p-fulltext-lite

Lightweight local full-text index with tokenization and AND search.

Category: indexes-search

Protocol: fulltext-lite/v1

When to use

Single-node or app-local search over modest document sets without P2P replication.

When not to use

Distributed inverted indexes (use hyper-p2p-inverted-index) or semantic vector search.

Quick start

const { HyperP2PFulltextLite } = require('hyper-p2p-fulltext-lite')
const mod = new HyperP2PFulltextLite()
mod.addDocument('1', 'Pear P2P modules')
console.log(mod.search('pear modules'))

Docs

Test

npm install && npm test