Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
sqlite3-offline-next
Advanced tools
Bundled SQLite3 library for offline environments but with modern node support
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 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
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()
These plattforms should work but I haven't tested them yet...
These releases should work but I haven't tested them yet...
Version v5.0.0 and up
Versions below v5.0.0
BSD © Mapbox
FAQs
Bundled SQLite3 library for offline environments but with modern node support
The npm package sqlite3-offline-next receives a total of 385 weekly downloads. As such, sqlite3-offline-next popularity was classified as not popular.
We found that sqlite3-offline-next demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.