https://github.com/sqlite-mpi/smpi-iop-node-ffi
SMPI IOP for Node.js
https://github.com/sqlite-mpi/smpi-iop-node-ffi
sqlite sqlite3
Last synced: about 1 month ago
JSON representation
SMPI IOP for Node.js
- Host: GitHub
- URL: https://github.com/sqlite-mpi/smpi-iop-node-ffi
- Owner: sqlite-mpi
- License: mit
- Created: 2019-11-20T19:32:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-26T21:22:18.000Z (over 6 years ago)
- Last Synced: 2025-10-29T21:48:08.671Z (8 months ago)
- Topics: sqlite, sqlite3
- Language: TypeScript
- Homepage: https://sqlitempi.com
- Size: 1.82 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
### SMPI IOP for Node.
- IOP = Input Output Provider.
- Used to test `sqlite-mpi-client-js` from the CLI.
- Allows fast iteration of testing between the JS client and FFI binary.
- Bundles SQLite MPI binary.
- Currently only supports Mac OS.
### License note
The shared library binaries (`./src/cdylib/*`) included in this repo are MIT licensed, but the source code that produced them is closed and proprietary.
A perpetual license for the source code can be arranged for a small fee, please contact emadda.dev@gmail.com.
See https://sqlitempi.com/license for more details.
### Example usage:
```js
const iop = require("smpi-iop-node-ffi");
const {smpi}= require("sqlite-mpi-client-js");
const client = smpi.newClient(iop);
```
See https://github.com/sqlite-mpi/sqlite-mpi-client-js/tree/master/test for detailed examples.