• Home
  • Categories
  • Pricing
  • Submit
    Built with
    Ever Works
    Ever Works

    Connect with us

    Stay Updated

    Get the latest updates and exclusive content delivered to your inbox.

    Product

    • Categories
    • Pricing
    • Help

    Clients

    • Sign In
    • Register
    • Forgot password?

    Company

    • About Us
    • Admin
    • Sitemap

    Resources

    • Blog
    • Submit
    • API Documentation
    All product names, logos, and brands are the property of their respective owners. All company, product, and service names used in this repository, related repositories, and associated websites are for identification purposes only. The use of these names, logos, and brands does not imply endorsement, affiliation, or sponsorship. This directory may include content generated by artificial intelligence.
    Copyright © 2025 Awesome Vector Databases. All rights reserved.·Terms of Service·Privacy Policy·Cookies
    Decorative pattern
    Decorative pattern
    1. Home
    2. Embedded Vector Databases
    3. embedded-vector-db

    embedded-vector-db

    Lightweight npm package providing an embedded vector database for Node.js applications. Offers vector similarity search with HNSW, BM25 full-text search, hybrid search using weighted fusion or Reciprocal Rank Fusion (RRF), multi-namespace support, CRUD operations, metadata filtering, concurrency safety, and persistent storage to disk. Designed for RAG pipelines and semantic search use cases.

    Surveys

    Loading more......

    Information

    Websitegithub.com
    PublishedApr 7, 2026

    Categories

    1 Item
    Embedded Vector Databases

    Tags

    7 Items
    #open-source#embedded#lightweight#no-server#hybrid-search#nodejs#bm25

    Similar Products

    6 result(s)

    tinyvector

    A tiny embedding database in pure Rust, implemented as a lightweight Axum server for fast vector search on small to medium datasets. It stores all indexes in memory, enabling vertical scaling to over 100 million vectors with comparable speed and slightly better accuracy than advanced vector databases. Open-source under the MIT license, ideal for simple setups like document chat or website search.

    nano-vectordb-rs

    A simple, easy-to-hack vector database library implemented in Rust. It supports fast cosine similarity searches with Rayon parallelism, embedded persistence, and a minimal API ideal for prototyping and educational purposes.

    rvLite

    Standalone 2MB edge vector database for IoT, mobile, and embedded applications, providing full vector search capabilities without server dependency.

    orama

    Orama is a lightweight search engine that supports vector and hybrid search functionalities, suitable for browser, server, or edge environments.

    Qdrant Vector Database

    Qdrant is an open‑source vector database designed for high‑performance similarity search and AI applications such as RAG, recommendation systems, advanced semantic search, anomaly detection, and AI agents. It provides scalable storage and retrieval of vector embeddings with features like filtering, hybrid search, and production‑grade APIs for integrating with machine learning workloads.

    Featured

    RuVector

    A self-learning, self-optimizing vector database with graph intelligence, local AI runtime, and PostgreSQL integration. It improves search quality over time using GNNs that learn from queries and feedback, supports hybrid search, Graph RAG, DiskANN, and deploys as a single file anywhere including browsers and edge devices. Open-source under MIT license, free forever.

    Overview

    embedded-vector-db is a self-contained Node.js library for efficient vector similarity search combined with BM25 full-text search and hybrid capabilities. Built on hnswlib-node for kNN search. Currently in beta with stable APIs expected in version 1.0.

    Features

    • Hybrid Search: Combines semantic vector search with BM25 keyword search using weighted fusion or RRF
    • Vector Search: kNN similarity using HNSW
    • BM25 Full-Text Search: Industry-standard text ranking with tunable k1/b parameters
    • Multi-namespace: Data isolation across collections
    • CRUD Operations: insert, update, delete, batchInsert
    • Metadata Filtering: Filter results by metadata fields
    • Concurrency Safe: Thread-safe with mutex/semaphore
    • Persistence: save/load indexes to disk
    • Configuration: setFullTextIndexedFields, setBM25Params
    • Reranking: Optional MMR diversity reranking

    Search Methods

    • search(namespace, queryVector, k): Pure vector search
    • fullTextSearch(namespace, queryText, k): BM25 keyword search
    • hybridSearch(namespace, queryVector, queryText, options): Weighted hybrid (vectorWeight/textWeight)
    • hybridSearchRRF(namespace, queryVector, queryText, k): RRF fusion (no tuning needed)

    Performance

    For 10K documents (384-dim):

    • Insert: 0.5-1ms
    • Vector Search: 1-2ms
    • BM25 Search: 1-3ms
    • Hybrid RRF: 2-5ms

    Memory: ~16MB for 10K docs.

    Pricing

    Free and open-source under the MIT license.