Socket
Socket
Sign inDemoInstall

sqlite-vss

Package Overview
Dependencies
3
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sqlite-vss

`sqlite-vss` is distributed on `npm` for Node.js developers. To install on [supported platforms](#supported-platforms), simply run:


Version published
Weekly downloads
3.1K
decreased by-8.36%
Maintainers
1
Install size
5.09 MB
Created
Weekly downloads
 

Readme

Source

sqlite-vss NPM Package

sqlite-vss is distributed on npm for Node.js developers. To install on supported platforms, simply run:

npm install sqlite-vss

The sqlite-vss package is meant to be used with Node SQLite clients like better-sqlite3 and node-sqlite3.

// using sqlite-vss with better-sqlite3
import Database from "better-sqlite3";
import * as sqlite_vss from "sqlite-vss";

const db = new Database(":memory:");

sqlite_vss.load(db);

const version = db.prepare("select vss_version()").pluck().get();
console.log(version); // "v0.2.0"
// using sqlite-vss with node-sqlite3
import sqlite3 from "sqlite3";
import * as sqlite_vss from "sqlite-vss";

const db = new sqlite3.Database(":memory:");

db.loadExtension(sqlite_vss.getLoadablePath());

db.get("select vss_version()", (err, row) => {
  console.log(row); // {vss_version(): "v0.2.0"}
});

See the full API Reference for the Node API, and docs.md for documentation on the sqlite-vss SQL API.

Supported Platforms

Since the underlying vss0 SQLite extension is pre-compiled, the sqlite-vss NPM package only works on a few "platforms" (operating systems + CPU architectures). These platforms include:

  • darwin-x64 (MacOS x86_64)
  • linux-x64 (Linux x86_64)

To see which platform your machine is, check the process.arch and process.platform values like so:

$ node -e 'console.log([process.platform, process.arch])'
[ 'darwin', 'x64' ]

When the sqlite-vss NPM package is installed, the correct pre-compiled extension for your operating system and CPU architecture will be downloaded from the optional dependencies, with platform-specific packages like sqlite-vss-darwin-x64. This will be automatically, there's no need to directly install those packages.

More platforms may be supported in the future. Consider supporting my work if you'd like to see more operating systems and CPU architectures supported in sqlite-vss.

API Reference

# getLoadablePath <>

Returns the full path to where the sqlite-vss should be installed, based on the sqlite-vss's package.json optional dependencies and the host's operating system and architecture.

This path can be directly passed into better-sqlite3's .loadExtension().

import Database from "better-sqlite3";
import * as sqlite_vss from "sqlite-vss";

const db = new Database(":memory:");
db.loadExtension(sqlite_vss.getLoadablePath());

It can also be used in node-sqlite3's .loadExtension().

import sqlite3 from "sqlite3";
import * as sqlite_vss from "sqlite-vss";

const db = new sqlite3.Database(":memory:");
db.loadExtension(sqlite_vss.getLoadablePath());

This function throws an Error in two different cases. The first case is when sqlite-vss is installed and run on an unsupported platform. The second case is when the platform-specific optional dependency is not installed. If you reach this, ensure you aren't using --no-optional flag, and file an issue if you are stuck.

The db.loadExtension() function may also throw an Error if the compiled extension is incompatible with your SQLite connection for any reason, including missing system packages, outdated glib versions, or other misconfigurations. If you reach this, please file an issue.

FAQs

Last updated on 06 Aug 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc