
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.
dev-database
Advanced tools
A Lightning-Fast, Lightweight JSON File-Based Database
Dev-Database is a high-performance, lightweight npm package that offers a fast and efficient way to perform database operations using JSON files. It's designed for developers who need a quick, easy-to-use solution for storing and retrieving data. Now with enhanced speed and asynchronous operations, it’s perfect for both small-scale projects and lightweight Discord bots.
Install Dev-Database via npm:
npm install dev-database
Create an instance of DevDatabase by providing the path to your JSON file.
const DevDatabase = require('dev-database');
// Create an instance of DevDatabase
const db = new DevDatabase('database.json');
// Set a key-value pair
db.set('key1', 'value1');
console.log(db.get('key1')); // Output: 'value1'
// Delete a key
db.delete('key1');
// Bulk set key-value pairs
db.bulkSet([
['key2', 'value2'],
['key3', 'value3']
]);
// Retrieve a value with a default fallback
console.log(db.get('nonexistentKey', 'defaultValue')); // Output: 'defaultValue'
// Clear all data
db.clear();
// Close the database (force save to disk)
db.close();
set(key, value)Sets a key-value pair in the database.
db.set('key', 'value');
get(key, defaultValue = null)Retrieves the value associated with a key, or returns defaultValue if the key doesn't exist.
const value = db.get('key', 'default');
delete(key)Deletes a key-value pair from the database.
db.delete('key');
bulkSet(entries)Sets multiple key-value pairs in a single operation.
db.bulkSet([
['key1', 'value1'],
['key2', 'value2']
]);
clear()Clears all key-value pairs in the database.
db.clear();
close()Forces the database to save all data to disk immediately.
db.close();
All CRUD operations happen in memory for maximum performance, with asynchronous writes to disk.
Changes to the database are saved to the JSON file in batches every 500ms, reducing the overhead of frequent file writes.
Dev-Database will create a new one.close() when shutting down your application to prevent data loss.Join my Discord Developers Server:
https://discord.gg/FqceHDU8QP
FAQs
A Lightning-Fast, Lightweight JSON File-Based Database.
The npm package dev-database receives a total of 1 weekly downloads. As such, dev-database popularity was classified as not popular.
We found that dev-database demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.