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

cosdata-sdk

v0.2.2

Published

TypeScript SDK for Cosdata Vector Database API

Readme

Cosdata Node.js SDK

A TypeScript/JavaScript SDK for interacting with the Cosdata Vector Database.

Installation

npm install cosdata-sdk

Quick Start

import { createClient } from 'cosdata-sdk';

// Initialize the client (all parameters are optional)
const client = createClient({
  host: 'http://127.0.0.1:8443',  // Default host
  username: 'admin',              // Default username
  password: 'test_key',           // Default password
  verifySSL: false                // SSL verification
});

// Create a collection
const collection = await client.createCollection({
  name: 'my_collection',
  dimension: 128,
  dense_vector: {
    enabled: true,
    dimension: 128,
    auto_create_index: false
  }
});

// Create an index
const index = await collection.createIndex({
  name: 'my_collection_dense_index',
  distance_metric: 'cosine',
  quantization_type: 'auto',
  sample_threshold: 100,
  num_layers: 16,
  max_cache_size: 1024,
  ef_construction: 128,
  ef_search: 64,
  neighbors_count: 10,
  level_0_neighbors_count: 20
});

// Generate some vectors
function generateRandomVector(dimension: number): number[] {
  return Array.from({ length: dimension }, () => Math.random());
}

const vectors = Array.from({ length: 100 }, (_, i) => ({
  id: `vec_${i}`,
  dense_values: generateRandomVector(128),
  document_id: `doc_${i}`
}));

// Add vectors using a transaction
const txn = collection.transaction();
await txn.batch_upsert_vectors(vectors);
await txn.commit();

// Search for similar vectors
const results = await collection.getSearch().dense({
  query_vector: generateRandomVector(128),
  top_k: 5,
  return_raw_text: true
});

// Verify vector existence
const exists = await collection.getVectors().exists('vec_1');
console.log('Vector exists:', exists);

// Get collection information
const collectionInfo = await collection.getInfo();
console.log('Collection info:', collectionInfo);

// List all collections
const collections = await client.listCollections();
console.log('Available collections:', collections);

// Version management
const currentVersion = await collection.getVersions().getCurrent();
console.log('Current version:', currentVersion);

// Clean up
await collection.delete();

API Reference

Client

The main client for interacting with the Vector Database API.

const client = createClient({
  host: 'http://127.0.0.1:8443',  // Optional
  username: 'admin',              // Optional
  password: 'test_key',           // Optional
  verifySSL: false                // Optional
});

Methods:

  • createCollection(options: { name: string, dimension: number, dense_vector?: { enabled: boolean, dimension: number, auto_create_index: boolean }, sparse_vector?: { enabled: boolean, auto_create_index: boolean }, tf_idf_options?: { enabled: boolean } }): Promise<Collection>
  • listCollections(): Promise<string[]>
  • getCollection(name: string): Promise<Collection>

Collection

The Collection class provides access to all collection-specific operations.

const collection = await client.createCollection({
  name: 'my_collection',
  dimension: 128,
  dense_vector: {
    enabled: true,
    dimension: 128,
    auto_create_index: false
  }
});

Methods:

  • createIndex(options: { name: string, distance_metric: string, quantization_type: string, sample_threshold: number, num_layers: number, max_cache_size: number, ef_construction: number, ef_search: number, neighbors_count: number, level_0_neighbors_count: number }): Promise<Index>
  • getInfo(): Promise<CollectionInfo>
    • Returns collection information:
      interface CollectionInfo {
        name: string;
        description?: string;
        dense_vector?: {
          enabled: boolean;
          dimension: number;
          auto_create_index: boolean;
        };
        sparse_vector?: {
          enabled: boolean;
          auto_create_index: boolean;
        };
        metadata_schema?: Record<string, any>;
        config?: {
          max_vectors?: number;
          replication_factor?: number;
        };
      }
  • delete(): Promise<void>
  • transaction(): Transaction
  • getVectors(): Vectors
  • getSearch(): Search
  • getVersions(): Versions

Transaction

The Transaction class provides methods for vector operations.

const txn = collection.transaction();
await txn.batch_upsert_vectors(vectors);
await txn.commit();

Methods:

  • upsert_vector(vector: Vector): Promise<void>
  • batch_upsert_vectors(vectors: Vector[], maxWorkers?: number, maxRetries?: number): Promise<void>
  • commit(): Promise<void>
  • abort(): Promise<void>

Search

The Search class provides methods for vector similarity search.

const results = await collection.getSearch().dense({
  query_vector: vector,
  top_k: 5,
  return_raw_text: true
});

Methods:

  • dense(options: { query_vector: number[], top_k?: number, return_raw_text?: boolean }): Promise<SearchResponse>
    • Returns search results:
      interface SearchResponse {
        results: SearchResult[];
      }
      
      interface SearchResult {
        id: string;
        document_id?: string;
        score: number;
        text?: string | null;
      }
  • sparse(options: { query_terms: number[][], top_k?: number, early_terminate_threshold?: number, return_raw_text?: boolean }): Promise<SearchResponse>
    • Returns search results with the same interface as dense search
  • text(options: { query_text: string, top_k?: number, return_raw_text?: boolean }): Promise<SearchResponse>
    • Performs text search using TF-IDF and returns results with the same interface as dense search

Vectors

The Vectors class provides methods for vector operations.

const exists = await collection.getVectors().exists('vec_1');
const vector = await collection.getVectors().get('vec_1');

Methods:

  • get(vector_id: string): Promise<any>
    • Returns a plain object matching the vector schema or null if not found:
      interface VectorObject {
        id: string;
        document_id?: string;
        dense_values?: number[];
        sparse_indices?: number[];
        sparse_values?: number[];
        text?: string;
      }
  • exists(vector_id: string): Promise<boolean>
  • delete(vector_id: string): Promise<void>

Versions

The Versions class provides methods for version management.

const currentVersion = await collection.getVersions().getCurrent();
const allVersions = await collection.getVersions().list();

Methods:

  • getCurrent(): Promise<Version>
    • Returns the current version information:
      interface Version {
        hash: string;
        version_number: number;
        timestamp: number;
        vector_count: number;
      }
  • list(): Promise<ListVersionsResponse>
    • Returns all versions and the current hash:
      interface ListVersionsResponse {
        versions: Version[];
        current_hash: string;
      }
  • getByHash(versionHash: string): Promise<Version>
    • Returns version information for a specific hash

Best Practices

  1. Connection Management

    • Use createClient() to initialize the client
    • Reuse the client instance across your application
    • The client automatically handles authentication and token management
  2. Vector Operations

    • Use transactions for batch operations
    • Always call commit() after successful operations
    • Use abort() in case of errors
    • Maximum batch size is 200 vectors per transaction
  3. Error Handling

    • All operations return promises that reject on failure
    • Use try/catch blocks for error handling
    • Always clean up resources (delete collections) after testing
  4. Performance

    • Adjust index parameters based on your use case
    • Use appropriate vector dimensions
    • Consider batch sizes for large operations
  5. Version Management

    • Use versions to track collection evolution
    • Clean up old versions when no longer needed

License

This project is licensed under the MIT License - see the LICENSE file for details.