# `sqlite-fastrand` NPM Package
`sqlite-fastrand` is distributed on `npm` for Node.js developers. To install on [supported platforms](#supported-platforms), simply run:
```
npm install sqlite-fastrand
```
The `sqlite-fastrand` package is meant to be used with Node SQLite clients like [`better-sqlite3`](https://github.com/WiseLibs/better-sqlite3) and [`node-sqlite3`](https://github.com/TryGhost/node-sqlite3). For `better-sqlite3`, call [`.loadExtension()`](https://github.com/WiseLibs/better-sqlite3/blob/master/docs/api.md#loadextensionpath-entrypoint---this) on your database object, passing in [`getLoadablePath()`](#getLoadablePath).
```js
import Database from "better-sqlite3";
import * as sqlite_fastrand from "sqlite-fastrand";
const db = new Database(":memory:");
db.loadExtension(sqlite_fastrand.getLoadablePath());
const version = db.prepare("select fastrand_version()").pluck().get();
console.log(version); // "v0.2.0"
```
For `node-sqlite3`, call the similarly named [`.loadExtension()`](https://github.com/TryGhost/node-sqlite3/wiki/API#loadextensionpath--callback) method on your database object, and pass in [`getLoadablePath()`](#getLoadablePath).
```js
import sqlite3 from "sqlite3";
import * as sqlite_fastrand from "sqlite-fastrand";
const db = new sqlite3.Database(":memory:");
db.loadExtension(sqlite_fastrand.getLoadablePath());
db.get("select fastrand_version()", (err, row) => {
console.log(row); // {json_schema_version(): "v0.2.0"}
});
```
See [the full API Reference](#api-reference) for the Node API, and [`docs.md`](../../docs.md) for documentation on the `sqlite-fastrand` SQL API.
## Supported Platforms
Since the underlying `fastrand0` SQLite extension is pre-compiled, the `sqlite-fastrand` NPM package only works on a few "platforms" (operating systems + CPU architectures). These platforms include:
- `darwin-x64` (MacOS x86_64)
- `darwin-arm64` (MacOS M1 and M2 chips)
- `win32-x64` (Windows x86_64)
- `linux-x64` (Linux x86_64)
To see which platform your machine is, check the [`process.arch`](https://nodejs.org/api/process.html#processarch) and [`process.platform`](https://nodejs.org/api/process.html#processplatform) values like so:
```bash
$ node -e 'console.log([process.platform, process.arch])'
[ 'darwin', 'x64' ]
```
When the `sqlite-fastrand` NPM package is installed, the correct pre-compiled extension for your operating system and CPU architecture will be downloaded from the [optional dependencies](https://docs.npmjs.com/cli/v9/configuring-npm/package-json#optionaldependencies), with platform-specific packages like `sqlite-fastrand-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](https://github.com/sponsors/asg017/) if you'd like to see more operating systems and CPU architectures supported in `sqlite-fastrand`.
## API Reference
# getLoadablePath [<>](https://github.com/asg017/sqlite-fastrand/blob/main/npm/sqlite-fastrand/src/index.js "Source")
Returns the full path to where the `sqlite-fastrand` _should_ be installed, based on the `sqlite-fastrand`'s `package.json` optional dependencies and the host's operating system and architecture.
This path can be directly passed into [`better-sqlite3`](https://github.com/WiseLibs/better-sqlite3)'s [`.loadExtension()`](https://github.com/WiseLibs/better-sqlite3/blob/master/docs/api.md#loadextensionpath-entrypoint---this).
```js
import Database from "better-sqlite3";
import * as sqlite_fastrand from "sqlite-fastrand";
const db = new Database(":memory:");
db.loadExtension(sqlite_fastrand.getLoadablePath());
```
It can also be used in [`node-sqlite3`](https://github.com/TryGhost/node-sqlite3)'s [`.loadExtension()`](https://github.com/TryGhost/node-sqlite3/wiki/API#loadextensionpath--callback).
```js
import sqlite3 from "sqlite3";
import * as sqlite_fastrand from "sqlite-fastrand";
const db = new sqlite3.Database(":memory:");
db.loadExtension(sqlite_fastrand.getLoadablePath());
```
This function throws an `Error` in two different cases. The first case is when `sqlite-fastrand` is installed and run on an [unsupported platform](#supported-platforms). 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](https://github.com/asg017/sqlite-fastrand/issues/new) 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](https://github.com/asg017/sqlite-fastrand/issues/new).