Optimized SQLite and SQLite3 Multiple Ciphers builds for the web (WASM). Version 0.2.1 provides precompiled WebAssembly modules for running SQLite in browser environments. It is released on demand alongside the Dart package. Key differentiators: specifically designed for Flutter web / Dart web apps, supports SQLite3 Multiple Ciphers extension for encryption. Alternative to sql.js with less overhead for Dart projects.
npm install sqlite3-webNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows initializing the WebAssembly module, creating an in-memory database, executing a query, and closing the db.
Use `const sqlite3 = await sqlite3InitModule();`
Use a different SQLite library for non-web environments, like sql.js for Node.
Always use `import sqlite3InitModule from 'sqlite3-web';` and then call it.
Change to `import sqlite3InitModule from 'sqlite3-web';`
Await the promise returned by sqlite3InitModule().
Use a different SQLite implementation for non-browser environments.
No dependency data recorded yet.