
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
A simple database that uses css as the storage format.
npm install css3.db
const CSS3DB = require('css3.db');
// Create a new html database
const cssDB = new CSS3DB(__dirname+'/db1.css');
// Set key/value pair
cssDB.set('foo', 'boo') // -> true
// Get length (or size)
cssDB.length // -> 1
cssDB.size // -> 1
// Get key
cssDB.get('foo') // -> 'boo'
// Has key
cssDB.has('foo') // -> true
// Delete key
cssDB.delete('foo') // -> true
// Get entries
cssDB.entries() // -> [{"key": "foo", "value": "boo"}]
// Get keys
cssDB.keys() // -> ["foo"]
// Get values
cssDB.values() // -> ["boo"]
// Clear all entries
cssDB.clear() // -> true
FAQs
This is a simple database that uses css as the storage format.
The npm package css3.db receives a total of 1 weekly downloads. As such, css3.db popularity was classified as not popular.
We found that css3.db 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.