@louwers/duckdb-node-bindings-freebsd-x64
v1.3.2-r4
Published
Binaries supporting [Node](https://nodejs.org/) bindings to the [DuckDB C API](https://duckdb.org/docs/api/c/overview) for FreeBSD x64.
Readme
DuckDB Node Bindings: FreeBSD x64
Binaries supporting Node bindings to the DuckDB C API for FreeBSD x64.
See @duckdb/node-bindings for a low-level API that uses these binaries, or @duckdb/node-api for a high-level API built on those bindings.
How to use
Install @louwers/duckdb-node-bindings-freebsd-x64 and matching @duckdb/node-api version.
npm install @louwers/[email protected]
npm install @duckdb/[email protected]NOTE: FreeBSD 15 is required
Now you have to patch duckdb.js:
case 'freebsd-x64':
return require('@louwers/duckdb-node-bindings-freebsd-x64/duckdb.node');If everything is well, running the following script:
import duckdb from '@duckdb/node-api';
console.log(duckdb.version());Should result in:
node script.js
v1.3.2