npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

semnova

v1.0.1

Published

<p align="center"> <h1 align="center">Semnova</h1> <p align="center"> Zero API keys. Zero cloud costs. Local AI-powered semantic search for Node.js. </p> <p align="center"> <a href="https://www.npmjs.com/package/semnova"><img src="https://

Readme


What Is This?

Semnova lets you add meaning-based search to any Node.js app in 3 lines of code. Instead of matching exact keywords, it understands what the user means.

"I want to edit videos"  →  finds "AI Video Editor", "Clip Maker Pro", "Descript"
"need help writing emails" →  finds "Grammarly", "Copy.ai", "Jasper"

Everything runs locally on your machine. No OpenAI. No Anthropic. No API keys. No cloud bills.


Why Use This?

| Problem | Semnova Solution | |---|---| | User searches "laptop" but product is listed as "notebook computer" | Understands synonyms — finds it anyway | | API key costs $20–200/month for embeddings | Free forever — runs a 22MB local model | | User data sent to third-party AI providers | 100% local — zero data leaves your server | | Complex vector DB setup (Pinecone, Weaviate) | Works with zero config in-memory, or plug in your existing PostgreSQL/SQLite | | Python-only ML ecosystem | Pure JavaScript/TypeScript — works anywhere Node.js runs |


Installation

npm install semnova

That's it. The 22MB AI model downloads automatically on first use and caches locally.

Requirements

  • Node.js 18+ (uses ONNX Runtime)
  • ~256MB RAM available (model loaded in memory)
  • No GPU needed — runs on CPU
  • No Python needed — pure JavaScript

Quick Start

import { createIndex } from "semnova";

// 1. Create an index
const index = await createIndex();

// 2. Add your data
await index.add([
  { id: "1", text: "AI-powered video editing tool" },
  { id: "2", text: "Email automation platform" },
  { id: "3", text: "Code debugging assistant" },
]);

// 3. Search by meaning
const results = await index.search("I want to edit my videos");
// → [{ id: "1", score: 0.87, item: { id: "1", text: "AI-powered video editing tool" } }]

3 lines. No API key. No config. It just works.


API Reference

createIndex(options?)

Creates and returns a new SearchIndex instance.

const index = await createIndex({
  model: "Xenova/all-MiniLM-L6-v2",  // HuggingFace model ID
  dimensions: 384,                     // Must match model output
  store: "memory",                     // "memory" | "pgvector" | "sqlite"
  storeOptions: {},                    // Store-specific config
  defaultThreshold: 0.25,             // Min similarity 0–1
  defaultLimit: 10,                    // Max results
  textField: "text",                   // Field to embed
  textExtractor: undefined,            // Custom: (item) => string
  preprocess: undefined,               // Custom: (text) => string
  modelCachePath: undefined,           // Model cache directory
  verbose: false,                      // Debug logging
});

index.add(items, options?)

Add one or more items to the index.

// Single item
await index.add({ id: "1", text: "Video editing tool" });

// Batch with progress
await index.add(items, {
  batchSize: 50,
  onProgress: ({ current, total, percent }) => {
    console.log(`${percent}% complete`);
  },
});

index.search(query, options?)

Search by meaning. Returns results sorted by relevance.

const results = await index.search("edit my videos", {
  limit: 5,
  threshold: 0.3,
  filter: (item) => item.category === "video",
  includeEmbedding: false,
});

// Result: [{ id: "1", score: 0.87, item: {...} }, ...]

index.remove(ids)

await index.remove("1");
await index.remove(["1", "2", "3"]);

index.update(items)

Re-embeds and replaces existing items.

await index.update({ id: "1", text: "Updated description here" });
await index.update([item1, item2]);

index.stats()

const stats = await index.stats();
// { count: 1304, model: "Xenova/all-MiniLM-L6-v2", dimensions: 384, store: "memory" }

embed(text)

Standalone embedding function.

import { embed } from "semnova";

const vector = await embed("Hello world");
// [0.12, -0.45, 0.89, ...] (384 numbers)

Storage Adapters

Memory (Default)

const index = await createIndex(); // Memory is the default
  • Persistence: None — data lost on restart
  • Max items: ~50,000 (search stays under 100ms)
  • Dependencies: None
  • Best for: Prototyping, small datasets, serverless functions

pgvector (PostgreSQL)

// Important: Requires `pg` to be installed (npm install pg)
const index = await createIndex({
  store: "pgvector",
  storeOptions: {
    connectionString: "postgresql://user:pass@localhost:5432/mydb",
    tableName: "embeddings",       // default: "semantic_search_embeddings"
    createTable: true,              // auto-create table + extension
    indexType: "hnsw",              // "hnsw" | "ivfflat" | "none"
  },
});

SQLite

// Important: Requires `better-sqlite3` to be installed (npm install better-sqlite3)
const index = await createIndex({
  store: "sqlite",
  storeOptions: {
    dbPath: "./search.db",
    tableName: "embeddings",
  },
});

Performance

| Operation | Time | |---|---| | Model cold start | 2–5 seconds (first call only) | | Single embedding | 5–50ms (depends on text length) | | Batch 1,000 items | 10–30 seconds | | Search (memory, 10K items) | ~5ms | | Search (pgvector HNSW, 100K items) | <5ms | | Search (SQLite, 50K items) | ~15ms |


Contributing

Please see CONTRIBUTING.md for full instructions on how to contribute.

License

MIT — Use it however you want. Free forever.