
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
json-debby
Advanced tools
Easy-to-use JSON-based database for beginners
npm install json-debby
Add as many files as you want to your database by entering their path as a parameter of the constructor. They will be managed by Debby automatically, depending on what you request from your database.
const Debby = require("json-debby")
const debby = new Debby(
"./save.json", // mandatory path
"utf8" // optional encoding (default : utf8)
)
The path parameter represents a complete path.
The pathName parameter represents a piece of path.
const debby = new Debby("./save.json")
function example(){
debby.json.fleurs = {}
debby.json.fleurs.rose = "🌹"
console.log(debby.json) /*=> {
"fleurs" : {
"rose" : "🌹"
}
}*/
debby.end() // save the changes if there were any.
}
example()
I intend to improve this package as much as I could. Thank you for downloading!
FAQs
JSON Database (commented in French)
The npm package json-debby receives a total of 14 weekly downloads. As such, json-debby popularity was classified as not popular.
We found that json-debby 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.