@monlite/core MongoDB-style document
collections + typed queries + reactive watch(). This
grid is live — add or delete and it updates instantly.
@monlite/fts SQLite FTS5 full-text search — ranked, with highlights. Try neural, sqlite, retrieval.
@monlite/vector Semantic search via
findSimilar() — matches by meaning, not
keywords. Embeddings are computed in your browser
(Transformers.js, all-MiniLM-L6-v2).
@monlite/kv Synchronous cache with TTLs & atomic locks — Redis's local role, over the same file.
@monlite/queue Durable job queue — jobs persist in the DB, a worker claims & runs them, with retries & backoff (~30% of demo jobs fail once to show a retry).
@monlite/cron Persisted scheduled jobs from cron expressions. We compute the next runs instantly; a live job ticks on the schedule.
* * * * * = every minute · */5 * * * * =
every 5 min · 0 9 * * 1 = 9am Mondays