SQLite adapter for Chaos ORM, a lightweight object-relational mapping library for Node.js. Version 15.0.0 is current, with releases on an as-needed basis. Key differentiator: provides a unified interface for SQLite databases within Chaos ORM ecosystem. Requires babel-polyfill as peer dependency for older Node.js compatibility. Not recommended for new projects; consider using better-sqlite3 or knex directly.
npm install chaos-database-sqliteNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to connect, create table, insert a record, and close connection using Chaos ORM SQLite adapter.
Consider migrating to better-sqlite3 or knex with sqlite3.
Install babel-polyfill: npm install babel-polyfill
Use import syntax and ensure Node version supports ESM (>=12).
npm install babel-polyfill
Use import Database from 'chaos-database-sqlite'