A platform-specific binary package for the sqlite-vec vector search SQLite extension on macOS x64 systems. Version 0.1.9 (pre-1.0, active development with monthly releases). Provides fast k-means clustering and approximate nearest neighbor search as a loadable extension. Alternative to vector extensions with minimal dependencies and no external server.
npm install sqlite-vec-darwin-x64No compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Install the macOS x64 binary, load extension into Better-SQLite3, create a vector table, insert vectors, and perform a nearest neighbor search.
Use 'sqlite-vec' as the main package instead; it will choose the correct binary for your platform.
Pin exact version (e.g., '0.1.9') in package.json to avoid unexpected changes.
Watch the changelog and use versioned documentation.
Load the extension exactly once per database connection.
Install the parent 'sqlite-vec' package which automatically picks the correct binary for the current platform.
Call db.loadExtension(sqlite_vec()) before creating vec0 tables.
Explicitly convert to Float32Array: new Float32Array([...])
No dependency data recorded yet.