sqlite3-offline-next
v5.0.3
Published
Bundled SQLite3 library for offline environments but with modern node support
Downloads
1,994
Maintainers
Readme
SQLite3 for offline environments - sqlite3-offline-next
Bundled library for SQLite3 for offline deployments. Zero dependencies, zero external HTTP downloads.
Based on the awesome work of DenisCarriere and Howe Huang and just forked + published to by me.
After version upgrade to v5.0.0, Offical SQLite3 use Node-API to build native addons so that we can use one prebuild native library support across versions of Node.js. But Unfortunately, some old Node release and Electron version has been end of support.
Install 🛠
# Install as normal package
npm install --save sqlite3-offline-next
yarn sqlite3-offline-next
# Install as sqlite3 alias
npm install --save sqlite3@npm:sqlite3-offline-next
yarn add sqlite3@npm:sqlite3-offline-next
Quickstart 🚀
const sqlite3 = require('sqlite3-offline-next').verbose()
var db = new sqlite3.Database('./dev.db')
db.serialize(function() {
db.run("CREATE TABLE lorem (info TEXT)")
var stmt = db.prepare("INSERT INTO lorem VALUES (?)")
for (var i = 0; i < 10; i++) {
stmt.run("Ipsum " + i)
}
stmt.finalize()
db.each("SELECT rowid AS id, info FROM lorem", function(err, row) {
console.log(row.id + ": " + row.info)
})
})
db.close()
Supported Platforms
- Windows x64 & ia32
- MacOSX x64
- Linux x64
Untested
These plattforms should work but I haven't tested them yet...
- Electron (Version below v5.0.0)
- v1.5
- v1.6
- v1.7
- v8.2
- Electron (Version after v5.0.0)
- v6.0
- v6.1
- v7.0
- v6.1
- v8.0
- v8.1
- v8.2
Supported NodeJS Releases
Tested (only for v5.0.0 and up)
- Node.js v16
- Node.js v15
- Node.js v14
Untested
These releases should work but I haven't tested them yet...
Version v5.0.0 and up
- Node.js v13
- Node.js v12
- Node.js v11
Versions below v5.0.0
- Node.js v13
- Node.js v12
- Node.js v11
- Node.js v10
- Node.js v9
- Node.js v8
- Node.js v7
- Node.js v6
- Node.js v5
- Node.js v4
License
BSD © Mapbox